diff options
Diffstat (limited to 'test.icl')
-rw-r--r-- | test.icl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -20,9 +20,10 @@ sqrt = 'z' := 0 :. 'o' := 'o' + 2 :. 's' := 's' + 'o' ) +//Start = toString (seq sqrt st) Start = toString (tree sqrt st) where st :: Var -> Int - st 'x' = 16 + st 'x' = 9 |