summaryrefslogtreecommitdiff
path: root/testsuite/runtime/parser/DummyNatCnc.gf
blob: 209c7596fe3d4992101a05a1ae5f8dabf5d07cdb (plain)
1
2
3
4
5
6
7
8
concrete DummyNatCnc of DummyNat = {

lincat Nat = Str ;
lin zero = "z" ;
    succ n = n ;
    plus m n = m ++ n ;

}