model for resource

This commit is contained in:
aarne
2007-02-28 15:49:13 +00:00
parent b789031396
commit 6248b4a1c7
11 changed files with 798 additions and 0 deletions

11
examples/model/Math.gf Normal file
View File

@@ -0,0 +1,11 @@
abstract Math = {
cat Prop ; Elem ;
fun
And : Prop -> Prop -> Prop ;
Even : Elem -> Prop ;
Odd : Elem -> Prop ;
Zero : Elem ;
}