klyn.collections.Array.Array
constructor
public native Array(size as Int)
DescriptionCreates a new array with a fixed number of elements.
Primitive numeric and boolean slots are initialized to zero / false.
Reference-like slots are initialized to null.
import klyn.collections
values as Int[] = Int[4]
print(values) # [0, 0, 0, 0]