diff options
author | ubq323 <ubq323@ubq323.website> | 2024-08-08 14:44:48 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-08-08 14:49:05 +0100 |
commit | d046c7d20fd283c90495d3af4bb53d1cfb2a0812 (patch) | |
tree | a764b20d45135101b179a4fbdc122ca0c76bd6b6 /tests/arr4.bth | |
parent | a4e8599e8d0fde881cd4e6e3031e5b52550e878e (diff) |
misc
Diffstat (limited to 'tests/arr4.bth')
-rw-r--r-- | tests/arr4.bth | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/arr4.bth b/tests/arr4.bth index 2521e63..979a640 100644 --- a/tests/arr4.bth +++ b/tests/arr4.bth @@ -1,4 +1,4 @@ (say - (let (A (append [1 2 3 (let (x 2) (* x x)) 5] 6)) - (let (B (append A 7)) (append B 8)) - (append (append A 9) 10))) + (let (A (append! [1 2 3 (let (x 2) (* x x)) 5] 6)) + (let (B (append! A 7)) (append! B 8)) + (append! (append! A 9) 10))) |