Files
wren/test/core/range/is_inclusive.wren
T

6 lines
203 B
Plaintext
Raw Normal View History

System.print((0..0).isInclusive) // expect: true
System.print((0...0).isInclusive) // expect: false
System.print((-1..1).isInclusive) // expect: true
System.print((-1...1).isInclusive) // expect: false