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 b8c1a09896
commit 72529388bf
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 ;
}