klyn.collections.Array.toString
method
public native override toString() as String
Description

Returns the fixed-array textual representation.

import klyn.collections

values as Boolean[] = Boolean[2]
values[0] = true
values[1] = false
print(values.toString())    # f:[true, false]
Returns

String representation of the array.