1
0
forked from GitHub/gf-core

started a directory of grammars testing testgf3 features

This commit is contained in:
aarne
2008-02-22 15:17:50 +00:00
parent 9e6064709f
commit 2faba90119
7 changed files with 25 additions and 14 deletions

View File

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