public toString() as String:
Returns a string representation of the array.
a = NDArray<Int>.fromList([[1, 2], [3, 4]]) print(a.toString()) # [[1, 2], [3, 4]]