aboutsummaryrefslogtreecommitdiff
path: root/tests/control_flow.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-06-14 23:25:05 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-06-14 23:25:34 -0700
commitb12744d831c4158671fc22401590eaac00f7c141 (patch)
tree203b80de68d89c7333172337f8def46ba11294d3 /tests/control_flow.nom
parent49f1eb3d08caf7605046373b7b3a001f28aa8aab (diff)
Some cleanup and fixes. Simplifying a lot of code, and extending the
flexibility of scoping. Redesigned Object system too.
Diffstat (limited to 'tests/control_flow.nom')
-rw-r--r--tests/control_flow.nom14
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/control_flow.nom b/tests/control_flow.nom
index 20ccabe..238bcbf 100644
--- a/tests/control_flow.nom
+++ b/tests/control_flow.nom
@@ -1,5 +1,5 @@
#
- Tests for the stuff defined in lib/control_flow.nom
+ Tests for the stuff defined in core/control_flow.nom
use "core"
@@ -193,15 +193,3 @@ assume
return %n
..= 6
-#
- %nums <- []
- for % in
- values
- -> 4
- -> 5
- -> 6
- ..
- add % to %nums
-
- assume (%nums = [4,5,6]) or barf "Coroutine iteration failed"
-