mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
14 lines
158 B
Plaintext
14 lines
158 B
Plaintext
abstract Arithm = {
|
|
|
|
cat
|
|
Prop ;
|
|
Nat ;
|
|
|
|
fun
|
|
Zero : Nat ;
|
|
Succ : Nat -> Nat ;
|
|
Even : Nat -> Prop ;
|
|
And : Prop -> Prop -> Prop ;
|
|
|
|
}
|