summaryrefslogtreecommitdiff
path: root/tests/arr1.bth
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arr1.bth')
-rw-r--r--tests/arr1.bth10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/arr1.bth b/tests/arr1.bth
index 1120549..06a830e 100644
--- a/tests/arr1.bth
+++ b/tests/arr1.bth
@@ -1,9 +1,9 @@
(set! A (arr))
(say A)
-(say (len A))
-(append A 10)
-(append A 20)
-(append A 30)
+(say (# A))
+(append! A 10)
+(append! A 20)
+(append! A 30)
(say A)
-(say (len A))
+(say (# A))
(say (A 1))