aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/arrays.tm6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/arrays.tm b/test/arrays.tm
index 6f99f3f2..0d21ea1d 100644
--- a/test/arrays.tm
+++ b/test/arrays.tm
@@ -35,14 +35,10 @@ func main():
>> arr
= [10, 20, 30, 40, 50, 60]
- >> arr ++= 70
- >> arr
- = [10, 20, 30, 40, 50, 60, 70]
-
do:
>> arr := [10, 20]
>> copy := arr
- >> arr ++= 30
+ >> arr ++= [30]
>> arr
= [10, 20, 30]
>> copy