rlox/interpreter/tests/lox/block/empty.lox
2024-09-01 19:15:55 +02:00

7 lines
99 B
Lox

{} // By itself.
// In a statement.
if (true) {}
if (false) {} else {}
print "ok"; // expect: ok