about summary refs log tree commit diff
path: root/users/tazjin/rlox/examples/hello.lox
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-08-30T16·15+0300
committertazjin <mail@tazj.in>2021-10-19T12·58+0000
commit6a38600ce88bbf2d9fa9a3821d7df3ebd8e0d4f3 (patch)
treea0e80c4430f8e470d405c4b193c5a71e6ce5a64f /users/tazjin/rlox/examples/hello.lox
parentedd8680e8773e4568d3d645c53932cf75ebf09fa (diff)
chore(tazjin/rlox): Add some old code example files r/2976
Change-Id: I484b11069286ea2277e9e158fa5c3bd34f84c89e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3464
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/rlox/examples/hello.lox')
-rw-r--r--users/tazjin/rlox/examples/hello.lox34
1 files changed, 34 insertions, 0 deletions
diff --git a/users/tazjin/rlox/examples/hello.lox b/users/tazjin/rlox/examples/hello.lox
new file mode 100644
index 0000000000..31752d9e2f
--- /dev/null
+++ b/users/tazjin/rlox/examples/hello.lox
@@ -0,0 +1,34 @@
+var a = 12;
+var b = a * 2;
+
+{
+  var b = a * 3;
+  a = 42;
+  print b;
+}
+
+print a;
+print b;
+
+if (5 > 4)
+  print "it's true";
+else
+  print "it's false";
+
+if (false)
+  print "it's not true";
+
+if (true and false)
+  print "won't happen";
+
+if (true or false)
+  print "will happen";
+
+var n = 5;
+while (n > 0) {
+  print "counting down";
+  n = n - 1;
+}
+
+for(var i = 0; i < 10; i = i + 1)
+  print "bla";