public operator[](i as Int) as Object:
Gets one element for 1D arrays.
a = NDArray<Int>.fromList([10, 20, 30]) print(a[1]) # 20