Files
wren/test/language/empty_block.wren

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 {}
IO.print("ok") // expect: ok