forked from kanaka/mal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
(* | ||
To try things at the ocaml repl: | ||
rlwrap ocaml | ||
To see type signatures of all functions: | ||
ocamlc -i step0_repl.ml | ||
To run the program: | ||
ocaml step0_repl.ml | ||
*) | ||
|
||
let read str = str | ||
let eval ast any = ast | ||
let print exp = exp | ||
let rep str = print (eval (read str) "") | ||
|
||
let rec main = | ||
try | ||
while true do | ||
print_string "user> "; | ||
print_endline (rep (read_line ())); | ||
done | ||
with End_of_file -> () |