public operator[](row as Int, col as Int) as Object:
a = NDArray<Int>.fromList([[10, 20], [30, 40]]) print(a[1, 0]) # 30