13 lines
395 B
OCaml
13 lines
395 B
OCaml
|
open Clflags
|
||
|
|
||
|
let main () =
|
||
|
Arg.parse
|
||
|
["-I", Arg.String(fun dir -> include_dirs := dir :: !include_dirs);
|
||
|
"-fast", Arg.Unit(fun () -> fast := true);
|
||
|
"-dlambda", Arg.Unit(fun () -> dump_lambda := true);
|
||
|
"-dinstr", Arg.Unit(fun () -> dump_instr := true)]
|
||
|
(fun name -> raise(Arg.Bad("don't know what to do with " ^ name)));
|
||
|
Toploop.loop()
|
||
|
|
||
|
let _ = Printexc.catch main ()
|