Files
gf-core/doc/tutorial/arithm/Arithm.gf
2006-06-01 16:16:18 +00:00

14 lines
158 B
Plaintext

abstract Arithm = {
cat
Prop ;
Nat ;
fun
Zero : Nat ;
Succ : Nat -> Nat ;
Even : Nat -> Prop ;
And : Prop -> Prop -> Prop ;
}