Kind/book/Parser.char.kind2
Victor Taelin 85ad65b026 use-notation
Now, there are two local binders:

let x = ...
use x = ...

The 'let' binder will create a local definition, type-check it, and
assign a name to it. When compiled, it will create 'dup' nodes.

The 'use' binder is just an alias. It will not bind a new variable, and,
when compiled, will create inline copies. Also, for type-checking, it
allows creating aliases that are definitionaly equal for the checker.
2024-03-08 17:39:37 -03:00

11 lines
344 B
Plaintext

Parser.char
: (Parser Char)
= λcode
use P = λx (Parser.Result Char)
use cons = λhead λtail
use P = λx (Parser.Result Char)
use true = (Parser.Result.done Char tail head)
use false = (Parser.Result.done Char tail head)
(~(Char.is_slash head) P true false)
use nil = (Parser.Result.fail Char "eof")
(~code P cons nil)