forked from Mirror/wren
Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
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
|