1
0
forked from GitHub/gf-core

resource examples in tutorial

This commit is contained in:
aarne
2006-06-01 16:16:18 +00:00
parent 89bd3aff33
commit 013f3ce803
9 changed files with 283 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
abstract Arithm = {
cat
Prop ;
Nat ;
fun
Zero : Nat ;
Succ : Nat -> Nat ;
Even : Nat -> Prop ;
And : Prop -> Prop -> Prop ;
}