aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-23 13:47:06 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-23 13:47:06 -0500
commit8bee541c76ebea46ea1c809805270bb69595a56a (patch)
treebe8fbe4b4ecc9147fcfbc8a627334bafeabb46cc /tests
parentc04b373cb49df5d3505247ae141d77cd84adf1ff (diff)
Support ++= item
Diffstat (limited to 'tests')
-rw-r--r--tests/arrays.nl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/arrays.nl b/tests/arrays.nl
index 0c118364..5484d5e2 100644
--- a/tests/arrays.nl
+++ b/tests/arrays.nl
@@ -28,3 +28,6 @@ for i,x in arr
>> arr2
= [10, 20, 30, 40, 50, 60]
+>> arr2 ++= 70
+>> arr2
+= [10, 20, 30, 40, 50, 60, 70]