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

26 lines
828 B
Plaintext
Raw Normal View History

2014-01-20 08:45:15 -08:00
// Ordered range.
2015-09-15 07:46:09 -07:00
System.print((2..5).from) // expect: 2
System.print((3..3).from) // expect: 3
System.print((0..3).from) // expect: 0
System.print((-5..3).from) // expect: -5
System.print((-5..-2).from) // expect: -5
2014-01-20 08:45:15 -08:00
// Backwards range.
2015-09-15 07:46:09 -07:00
System.print((5..2).from) // expect: 5
System.print((3..0).from) // expect: 3
System.print((3..-5).from) // expect: 3
System.print((-2..-5).from) // expect: -2
2014-01-20 08:45:15 -08:00
// Exclusive ordered range.
2015-09-15 07:46:09 -07:00
System.print((2...5).from) // expect: 2
System.print((3...3).from) // expect: 3
System.print((0...3).from) // expect: 0
System.print((-5...3).from) // expect: -5
System.print((-5...-2).from) // expect: -5
2014-01-20 08:45:15 -08:00
// Exclusive backwards range.
2015-09-15 07:46:09 -07:00
System.print((5...2).from) // expect: 5
System.print((3...0).from) // expect: 3
System.print((3...-5).from) // expect: 3
System.print((-2...-5).from) // expect: -2