Files
gf-core/old-examples/features/Param.gf

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
} ;
}