Unable to call list element from end
Numbered Steps to Reproduce Problem:
Steps: 3
1. Write in code:
var/list/L = list("1", "2", "-1")
world<< L[-1]
2. Compile
3. Get runtime with "List out of bound.", and it will return null replacing it value.
Code Snippet (if applicable) to Reproduce Problem:
var/list/L = list("1", "2", "-1")
world<< L[-1]
Expected Results:
return to world of list's element "-1".
Actual Results:
Runtime: "List out of bound."
Does the problem occur:
Every time
When does the problem NOT occur?: N/A
Workarounds:
LISTNAME[length(LISTNAME)]