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