Files
wren/test/language/empty_block.wren
T

7 lines
105 B
Plaintext
Raw Normal View History

2013-12-29 10:46:21 -08:00
{} // By itself.
// In a statement.
if (true) {}
if (false) {} else {}
2015-09-15 07:46:09 -07:00
System.print("ok") // expect: ok