mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 14:48:40 +01:00
8 lines
289 B
Plaintext
8 lines
289 B
Plaintext
IO.print(1..3) // expect: 1..3
|
|
IO.print(12345.6789..12345.6789) // expect: 12345.6789..12345.6789
|
|
IO.print(-100..-300) // expect: -100..-300
|
|
|
|
IO.print(1...3) // expect: 1...3
|
|
IO.print(12345.6789...12345.6789) // expect: 12345.6789...12345.6789
|
|
IO.print(-100...-300) // expect: -100...-300
|