1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/julia/step2_eval.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

64 lines
1.1 KiB
Julia
Executable File

#!/usr/bin/env julia
import readline_mod
import reader
import printer
# READ
function READ(str)
reader.read_str(str)
end
# EVAL
function eval_ast(ast, env)
if typeof(ast) == Symbol
env[ast]
elseif isa(ast, Array) || isa(ast, Tuple)
map((x) -> EVAL(x,env), ast)
elseif isa(ast, Dict)
[EVAL(x[1],env) => EVAL(x[2], env) for x=ast]
else
ast
end
end
function EVAL(ast, env)
if !isa(ast, Array) return eval_ast(ast, env) end
# apply
el = eval_ast(ast, env)
f, args = el[1], el[2:end]
f(args...)
end
# PRINT
function PRINT(exp)
printer.pr_str(exp)
end
# REPL
repl_env = {:+ => +,
:- => -,
:* => *,
:/ => div}
function REP(str)
return PRINT(EVAL(READ(str), repl_env))
end
while true
line = readline_mod.do_readline("user> ")
if line === nothing break end
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