diff options
author | Camil Staps | 2016-03-29 22:51:02 +0200 |
---|---|---|
committer | Camil Staps | 2016-03-29 22:51:02 +0200 |
commit | 786c7fbc17c149996f2d9b6cc92800d459b3de9a (patch) | |
tree | d0981636713b2cb7fdd56d0d1ec235b3a5fc6e33 /test.icl | |
parent | Initial commit (diff) |
Fix seq; more readme
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 |