From 9ba14b981eb1b9bc82cd0baa77fc0c3001fcec5f Mon Sep 17 00:00:00 2001 From: mollusk Date: Tue, 15 Aug 2017 06:31:42 -0700 Subject: [PATCH] printc() can now take unlimited arguments --- lib/io-extra.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/io-extra.jl b/lib/io-extra.jl index 2c435f2..6a50ed5 100644 --- a/lib/io-extra.jl +++ b/lib/io-extra.jl @@ -3,7 +3,7 @@ function input(prompt::AbstractString="") return chomp(readline()) end -function printc(color, message::AbstractString="") +function printc(color, message::AbstractString="",x...) print_with_color(color, message) end \ No newline at end of file