mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 22:09:32 -06:00
13 lines
138 B
Plaintext
13 lines
138 B
Plaintext
concrete NatAscii of Nat = {
|
|
|
|
lincat Nat = Str ;
|
|
|
|
lin zero = "" ;
|
|
succ n = "-" ++ n ;
|
|
|
|
lincat NE = {} ;
|
|
|
|
lin plus x y = x ++ y ;
|
|
|
|
}
|