Files
wren/test/list/subscript.wren
T

13 lines
349 B
Plaintext
Raw Normal View History

2013-11-24 19:08:46 -08:00
// Returns elements.
var list = ["a", "b", "c", "d"]
2014-01-05 12:27:12 -08:00
IO.print(list[0]) // expect: a
IO.print(list[1]) // expect: b
IO.print(list[2]) // expect: c
IO.print(list[3]) // expect: d
2013-11-24 19:08:46 -08:00
// Allows indexing backwards from the end.
2014-01-05 12:27:12 -08:00
IO.print(list[-4]) // expect: a
IO.print(list[-3]) // expect: b
IO.print(list[-2]) // expect: c
IO.print(list[-1]) // expect: d