Fix #2. Finish implementing Range.
Covers error and edge cases and fully tested now.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
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
|
||||
Reference in New Issue
Block a user