about summary refs log tree commit diff
path: root/users/tazjin/rlox/examples/if.lox
blob: b59f00b2016184e4e8c06c0e306344881ce6b116 (plain) (blame)
1
2
3
4
5
if (true) {
  print "yes";
}

print "afterwards";