1
0
forked from GitHub/gf-core
Files
gf-core/examples/features/Param.gf
2008-03-05 18:59:14 +00:00

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