thread EEnv into ShellState

This commit is contained in:
aarne
2006-11-12 13:24:13 +00:00
parent 28686eeba9
commit fbd9b862e2
7 changed files with 78 additions and 58 deletions

View File

@@ -19,6 +19,11 @@ fun
SymbS : Symb -> S ; -- A
--2 Symbols as numerals
SymbNum : Symb -> Num ; -- n
SymbOrd : Symb -> Num ; -- n'th
--2 Symbol lists
-- A symbol list has at least two elements. The last two are separated

View File

@@ -15,6 +15,9 @@ lin
SymbS sy = sy ;
SymbNum sy = sy ;
SymbOrd sy = {s = sy.s ++ "th"} ;
lincat
Symb, [Symb] = SS ;