Added: created input function to take user input for choices

This commit is contained in:
mollusk 2017-06-20 02:11:52 -07:00
parent 638fbef2a2
commit 1446322745

View File

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