diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/012/op.tl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/012/op.tl b/tests/012/op.tl index 5501cec4..4e0a8d46 100644 --- a/tests/012/op.tl +++ b/tests/012/op.tl @@ -105,3 +105,7 @@ (flow 10 (+ 1) (let (x @1) (y (* x 2))) (+ x y)) 44 (flow 10 (+ 1) (let ((x @1) (y (* @1 2))) (+ x y))) 33 (flow 10 (+ 1) (let ((x @1) (y (* @1 2))))) nil) + +(mtest + (lflow 10 (- 1) (- 1)) 8 + (lflow 10 (op - 100) (+ 1)) 91) |