Pierre-Emmanuel Wulfman 8f529a059a reorder folder
2020-06-03 14:47:36 +02:00

19 lines
428 B
OCaml

(* Driver for the CameLIGO lexer *)
module Region = Simple_utils.Region
module IO =
struct
let options =
let open EvalOpt in
let block = mk_block ~opening:"(*" ~closing:"*)"
in read ~block ~line:"//" ".mligo"
end
module M = LexerUnit.Make (IO) (Lexer.Make (LexToken))
let () =
match M.trace () with
Stdlib.Ok () -> ()
| Error Region.{value; _} -> Printf.eprintf "\027[31m%s\027[0m%!" value