You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
223 B
9 lines
223 B
module Make (L : S.S) = struct
|
|
module Cli = Cli.Make (L)
|
|
module Parse = Parse.Make (L)
|
|
|
|
let compile () =
|
|
Cli.check_usage () ;
|
|
let file = Sys.argv.(1) in
|
|
Cli.check_file_name file ; Parse.from_file file
|
|
end
|
|
|