mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
- Rename IO.write -> IO.print. - Make IO.write not print a newline. - Support \u Unicode escapes in strings.
7 lines
101 B
Plaintext
7 lines
101 B
Plaintext
{} // By itself.
|
|
|
|
// In a statement.
|
|
if (true) {}
|
|
if (false) {} else {}
|
|
|
|
IO.print("ok") // expect: ok |