1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/julia/step1_read_print.jl

44 lines
726 B
Julia
Raw Normal View History

2015-03-29 01:44:31 +03:00
#!/usr/bin/env julia
push!(LOAD_PATH, pwd(), "/usr/share/julia/base")
import readline_mod
2015-03-29 01:44:31 +03:00
import reader
import printer
# READ
function READ(str)
reader.read_str(str)
end
# EVAL
function EVAL(ast, env)
ast
end
# PRINT
function PRINT(exp)
printer.pr_str(exp)
end
# REPL
function REP(str)
return PRINT(EVAL(READ(str), []))
2015-03-29 01:44:31 +03:00
end
while true
line = readline_mod.do_readline("user> ")
if line === nothing break end
2015-03-29 01:44:31 +03:00
try
println(REP(line))
catch e
if isa(e, ErrorException)
println("Error: $(e.msg)")
else
println("Error: $(string(e))")
end
bt = catch_backtrace()
Base.show_backtrace(STDERR, bt)
println()
end
end