1
0
forked from Mirror/wren
Files
wren/test/string/subscript.wren
2014-01-03 10:47:26 -08:00

12 lines
348 B
Plaintext

// Returns characters (as strings).
IO.write("abcd"[0]) // expect: a
IO.write("abcd"[1]) // expect: b
IO.write("abcd"[2]) // expect: c
IO.write("abcd"[3]) // expect: d
// Allows indexing backwards from the end.
IO.write("abcd"[-4]) // expect: a
IO.write("abcd"[-3]) // expect: b
IO.write("abcd"[-2]) // expect: c
IO.write("abcd"[-1]) // expect: d