aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/arrays.tm5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/arrays.tm b/test/arrays.tm
index 07a89e19..e8856b3b 100644
--- a/test/arrays.tm
+++ b/test/arrays.tm
@@ -68,3 +68,8 @@ if yes
= @[10, 20, 30]
>> copy
= [10, 20]
+
+if yes
+ >> arr := [10, 20, 30]
+ >> arr:reversed()
+ = [30, 20, 10]