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