aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/two_variables.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/two_variables.sy')
-rw-r--r--progs/tests/two_variables.sy6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/tests/two_variables.sy b/progs/tests/two_variables.sy
new file mode 100644
index 0000000..93329e3
--- /dev/null
+++ b/progs/tests/two_variables.sy
@@ -0,0 +1,6 @@
+start :: fn {
+ a := 1
+ b := 2
+ a <=> 1
+ b <=> 2
+}