Corrected: input function now takes abstract string

This commit is contained in:
mollusk 2017-06-23 22:57:37 -07:00
parent 1446322745
commit cf2b875cc4
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
function input(prompt::String="")::String
function input(prompt::AbstractString="")
print(prompt)
return chomp(readline())
end

View File

@ -0,0 +1 @@
include("../lib/io-extra.jl")