rlox/interpreter/tests/lox/block/empty.lox

7 lines
99 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
{} // By itself.
// In a statement.
if (true) {}
if (false) {} else {}
print "ok"; // expect: ok