diff options
author | ubq323 <ubq323@ubq323.website> | 2024-07-11 15:43:18 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-07-11 15:43:18 +0100 |
commit | d9d307bc676387ab8894f9fb1ee722db8ecf7272 (patch) | |
tree | 135a8ca920a16c7f46cb6cf6b65d6e982163671e /tests/vars.bth | |
parent | d8d3770f88d6acc37620d6577fa5a0b026fb1231 (diff) |
set -> set!
Diffstat (limited to 'tests/vars.bth')
-rw-r--r-- | tests/vars.bth | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/vars.bth b/tests/vars.bth index 423dde6..aaa2a19 100644 --- a/tests/vars.bth +++ b/tests/vars.bth @@ -1,8 +1,8 @@ -(set a 5) -(set b 10) -(set thethe 1234) +(set! a 5) +(set! b 10) +(set! thethe 1234) (say (+ a b)) (say (- thethe a)) -(say (+ (set a 90) b)) +(say (+ (set! a 90) b)) (say a) nil |