Files
wren/test/core/range/to_string.wren

8 lines
313 B
Plaintext
Raw Normal View History

System.print(1..3) // expect: 1..3
System.print(12345.6789..12345.6789) // expect: 12345.6789..12345.6789
System.print(-100..-300) // expect: -100..-300
System.print(1...3) // expect: 1...3
System.print(12345.6789...12345.6789) // expect: 12345.6789...12345.6789
System.print(-100...-300) // expect: -100...-300