summaryrefslogtreecommitdiff
path: root/test.pez
diff options
context:
space:
mode:
Diffstat (limited to 'test.pez')
-rw-r--r--test.pez16
1 files changed, 12 insertions, 4 deletions
diff --git a/test.pez b/test.pez
index 1dbdfc6..118be00 100644
--- a/test.pez
+++ b/test.pez
@@ -1,10 +1,18 @@
@print: {[x] printf["%a\n", x]}
@Box: {[value]
- @test = 7
- #[{value},
- {[new] printf["test: %a\n", test] value = new}]
- }
+ @it = 0
+ (
+ @test = 7
+ @h2 = 100
+ it = #[{value},
+ {[new] printf["test: %a\n", test] value = new}]
+ )
+ (
+ @hmm = 999
+ )
+ it
+}
@x = Box[-7]