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

6 lines
203 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
System.print((0..0).isInclusive) // expect: true
System.print((0...0).isInclusive) // expect: false
2014-01-20 13:20:22 -08:00
2015-09-15 07:46:09 -07:00
System.print((-1..1).isInclusive) // expect: true
System.print((-1...1).isInclusive) // expect: false