mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
4 lines
103 B
Plaintext
4 lines
103 B
Plaintext
IO.print(1 + 2) // expect: 3
|
|
IO.print(12.34 + 0.13) // expect: 12.47
|
|
IO.print(3 + 5 + 2) // expect: 10
|