mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
7 lines
114 B
Plaintext
7 lines
114 B
Plaintext
io.write(1 + 2)
|
|
io.write(3 - 1)
|
|
io.write(10 / 3)
|
|
io.write(20 * 30)
|
|
io.write("abc" + "def")
|
|
io.write(1 + "string")
|