mlox/lox.t/block/empty.lox
2024-08-03 02:44:12 +02:00

7 lines
99 B
Lox

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