cheesebot/ocaml/shell.ml
Fabien Freling 764581f505 Add Evaluate module.
The Evaluate module contains the logic for cheesebot actions.
2014-03-14 23:02:27 +01:00

15 lines
260 B
OCaml

open Str
let () =
try
while true do
print_string "> ";
let line = read_line () in
match Evaluate.evaluate line with
| Some answer -> print_endline answer
| _ -> ()
done
with
End_of_file -> print_endline "Bye!";;