1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 18:18:51 +03:00
mal/julia/readline_mod.jl
Joel Martin 8511096262 Julia: step A. Add atoms and metadata.
- Refactor readline (not editline yet) into readline_mod.
- Ignore comments properly
2015-03-31 23:04:45 -05:00

16 lines
207 B
Julia

module readline_mod
export do_readline
function do_readline(prompt)
print(prompt)
flush(STDOUT)
line = readline(STDIN)
if line == ""
return nothing
end
chomp(line)
end
end