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

@ -1,4 +1,9 @@
function input(prompt::AbstractString="") function input(prompt::AbstractString="")
print(prompt) print(prompt)
return chomp(readline()) return chomp(readline())
end
function printc(color, message::AbstractString="")
print_with_color(color, message)
end end