mlox/lox.t/block/empty.lox

7 lines
99 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
{} // By itself.
// In a statement.
if (true) {}
if (false) {} else {}
print "ok"; // expect: ok