Kind/book/Kind.load.dependency.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

8 lines
311 B
Plaintext

Kind.load.dependency
: ∀(name: String) ∀(book: Kind.Book) (IO Kind.Book)
= λname λbook
use has = (String.Map.has Kind.Term name book)
use P = λx ∀(book: Kind.Book) (IO Kind.Book)
use true = λbook (IO.done Kind.Book book)
use false = λbook (Kind.load.name name book)
(~has P true false book)