This commit is contained in:
silvernode 2018-03-18 00:42:31 -07:00
parent da43bf51eb
commit 175baab4b9

9
lib/io.jl Normal file
View File

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