1
0
forked from Mirror/wren
Files
wren/test/core/list/subscript.wren

13 lines
381 B
Plaintext
Raw Normal View History

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