Added neater function for color printing

This commit is contained in:
mollusk 2017-08-15 05:23:05 -07:00
parent 771070efbe
commit c2dffe0d0a

View File

@ -2,3 +2,8 @@ function input(prompt::AbstractString="")
print(prompt)
return chomp(readline())
end
function printc(color, message::AbstractString="")
print_with_color(color, message)
end