started a directory of grammars testing testgf3 features

This commit is contained in:
aarne
2008-02-22 15:17:50 +00:00
parent 6621290502
commit 621d3fdfd1
8 changed files with 28 additions and 15 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
} ;
}