mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
12 lines
162 B
Plaintext
12 lines
162 B
Plaintext
resource Param = {
|
|
|
|
param Bool = True | False ;
|
|
|
|
oper and -- : Bool -> Bool -> Bool
|
|
= \\x,y => case x of {
|
|
True => y ;
|
|
False => False
|
|
} ;
|
|
|
|
}
|