Files
wren/test/empty_block.wren
T

7 lines
101 B
Plaintext
Raw Normal View History

2013-12-29 10:46:21 -08:00
{} // By itself.
// In a statement.
if (true) {}
if (false) {} else {}
2014-01-05 12:27:12 -08:00
IO.print("ok") // expect: ok