diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-26 11:50:21 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-26 11:50:21 +0100 |
commit | 22f530cf7cbde11cce5c32f304b7de027a43afcf (patch) | |
tree | 8697d8e2ae7e148a929824fa235468844be61030 /tests/vars4.bth | |
parent | a14bf1188c4cee23db44a590ada52aa8778a2a3f (diff) |
vars4 test
Diffstat (limited to 'tests/vars4.bth')
-rw-r--r-- | tests/vars4.bth | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/vars4.bth b/tests/vars4.bth new file mode 100644 index 0000000..20820e3 --- /dev/null +++ b/tests/vars4.bth @@ -0,0 +1,8 @@ +(do + (set x 100) + (puts x) + (let (x 20) + (puts x) + (set x 30) + (puts x)) + x) |