1
0
forked from GitHub/gf-core

added testsuite for the parser

This commit is contained in:
krasimir
2011-01-10 10:34:09 +00:00
parent 5d8d1999d8
commit 37d0200c7f
4 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
abstract DummyNat = {
cat Nat ;
fun zero : Nat ;
succ : Nat -> Nat ;
plus : Nat -> Nat -> Nat ;
}