mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
16 lines
354 B
OCaml
16 lines
354 B
OCaml
let read str = Reader.read_str str
|
|
let eval ast any = ast
|
|
let print exp = Printer.pr_str exp true
|
|
let rep str = print (eval (read str) "")
|
|
|
|
let rec main =
|
|
try
|
|
while true do
|
|
print_string "user> ";
|
|
let line = read_line () in
|
|
try
|
|
print_endline (rep line);
|
|
with End_of_file -> ()
|
|
done
|
|
with End_of_file -> ()
|