mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 12:32:41 +00:00
7 lines
99 B
Lox
7 lines
99 B
Lox
|
|
{} // By itself.
|
||
|
|
|
||
|
|
// In a statement.
|
||
|
|
if (true) {}
|
||
|
|
if (false) {} else {}
|
||
|
|
|
||
|
|
print "ok"; // expect: ok
|