mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
6 lines
135 B
Plaintext
6 lines
135 B
Plaintext
IO.write(8 / 2) // expect: 4
|
|
IO.write(12.34 / -0.4) // expect: -30.85
|
|
|
|
// TODO: Unsupported RHS types.
|
|
// TODO: Divide by zero.
|