klyn.collections.Array.toString
method
public override toString() as String:
Description
Returns the Python-like textual representation of the array.
import klyn.collections

values as Boolean[] = Boolean[2]
values[0] = true
values[1] = false
print(values.toString())    # [true, false]
Returns
String representation of the array.