OCaml: Handle some edge cases; refactor parser, main.ml; add config fetcher

This commit is contained in:
Juno Takano 2025-05-09 11:19:27 -03:00
commit cb56da1462
16 changed files with 229 additions and 105 deletions

View file

@ -12,5 +12,4 @@ type token =
val read : string -> char list list
val scan : char list list -> token list list
val string_of_tokens : token list list -> string
exception Malformed_source of string
val string_of_token : token -> string