aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-14 02:44:37 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-14 02:44:37 -0400
commit8847eaa660ef1538050c4bfc51ce405c90e6323b (patch)
treea2ed237fe03ced76bb725681810a371ef206cf60 /test
parentfdc3eadba25aff7894419e483519e73150be33d4 (diff)
Bugfix for looping
Diffstat (limited to 'test')
-rw-r--r--test/arrays.tm3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/arrays.tm b/test/arrays.tm
index 376dd6a5..78f3d433 100644
--- a/test/arrays.tm
+++ b/test/arrays.tm
@@ -47,6 +47,9 @@ if yes
>> copy
= [10, 20]
+if yes
+ >> [10*i for i in 5]
+ = [10, 20, 30, 40, 50]
// if yes
// >> arr := @[10, 20]
// >> copy := arr[]