printc() can now take unlimited arguments

This commit is contained in:
mollusk 2017-08-15 06:31:42 -07:00
parent 24ec48255d
commit 9ba14b981e

View File

@ -3,7 +3,7 @@ function input(prompt::AbstractString="")
return chomp(readline()) return chomp(readline())
end end
function printc(color, message::AbstractString="") function printc(color, message::AbstractString="",x...)
print_with_color(color, message) print_with_color(color, message)
end end