public native operator[](index as Int) as T
Returns or replaces the element at the given index.
Negative indexes are accepted and count from the end of the array.
import klyn.collections values as String[] = String[2] values[0] = "left" values[-1] = "right" print(values[0]) # left print(values[1]) # right