mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-16 16:29:32 -06:00
5 lines
105 B
Plaintext
5 lines
105 B
Plaintext
const : (A:Type) -> (B:Type) -> A -> B -> A ;
|
|
const _ _ x _ = x ;
|
|
|
|
id : (A:Type) -> A -> A ;
|
|
id A x = x ; |