1
0
forked from GitHub/gf-core

examples for transfer

This commit is contained in:
aarne
2003-10-08 14:14:09 +00:00
parent a979508aa7
commit ddd103ccd7
3 changed files with 113 additions and 0 deletions

12
grammars/numerals/Symb.gf Normal file
View File

@@ -0,0 +1,12 @@
concrete Symb of Nat = open Prelude in {
lincat Nat, Bin = SS ;
lin
One = ss "1" ;
Succ = postfixSS "'" ;
BOne = ss "1" ;
BX = postfixSS "0" ;
BXPlus = postfixSS "1" ;
}