diff options
Diffstat (limited to 'AStack.icl')
-rw-r--r-- | AStack.icl | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,8 @@ import ABC.Misc :: AStack :== [NodeId] +instance toString AStack where toString xs = "[" <++ (",", xs) <+ "]" + as_get :: ASrc AStack -> NodeId as_get _ [] = abortn "as_get: index too large" as_get 0 [n:_] = n |