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

11 lines
149 B
Plaintext

resource Param = {
param Bool = True | False ;
oper and : Bool -> Bool -> Bool = \x,y -> case x of {
True => y ;
_ => False
} ;
}