OCaml: Refactor configuration lexer for readability, conciseness

This commit is contained in:
Juno Takano 2025-05-05 02:06:37 -03:00
commit 8b1aae16c6
3 changed files with 80 additions and 65 deletions

View file

@ -0,0 +1,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