Kind/book/Parser.is_eof.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

12 lines
302 B
Plaintext

Parser.is_eof
: (Parser Bool)
= λcode
use P = λx (Parser.Result Bool)
use cons = λcode.head λcode.tail
(Parser.Result.done
Bool
(String.cons code.head code.tail)
Bool.false
)
use nil = (Parser.Result.done Bool String.nil Bool.true)
(~(String.skip code) P cons nil)