summaryrefslogtreecommitdiff
path: root/tests/arr6.bth
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-30 21:37:14 +0100
committerubq323 <ubq323@ubq323.website>2024-06-30 21:37:14 +0100
commit4cf1e1fa0e11307005a724225ea3ae2f80a5c037 (patch)
tree600c6ddc587f011f10a125e6dd31eb07ca8137b7 /tests/arr6.bth
parent83382cb1b46eb17f94f16fbbf05b5e471284d797 (diff)
add array index setting syntax
Diffstat (limited to 'tests/arr6.bth')
-rw-r--r--tests/arr6.bth4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/arr6.bth b/tests/arr6.bth
new file mode 100644
index 0000000..e814db4
--- /dev/null
+++ b/tests/arr6.bth
@@ -0,0 +1,4 @@
+(let (a [10 20 30])
+ (say a)
+ (set (a 1) 50)
+ (say a))