aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-11-08 22:59:31 +0100
committerWilliam Hergès <william@herges.fr>2025-11-08 22:59:31 +0100
commit8a26b3d43e1adb6f9585891500a5fc856fd0ca5c (patch)
tree19b2b90ee22c9b6cc3652d128ac7bf3f1da4da3c /example
parentc7a26d3c6125caa9239cec9bf08db935d98e19c1 (diff)
perf(var): replace atoms by charlist
Diffstat (limited to 'example')
-rw-r--r--example/input.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/example/input.txt b/example/input.txt
index 7233dc7..0d42cb7 100644
--- a/example/input.txt
+++ b/example/input.txt
@@ -1,7 +1,7 @@
-:a = 7;; :b = 4;;
-(:a + :b) * 10 / 2
+a = 7;; b = 4
+(a + b) * 10 / 2
-:x = 20
-:y = 3
-:z = 6
-10 + :z / :y * :x / 4
+x = 20
+y = 3
+z = 6
+10 + z / y * x / 4