Changes in new versions / Swift 6.2

// *** in version 6.2: ***
//InlineArray keeps its elements inline,
//without a separate heap allocation
let point: InlineArray<2Int> = [34]

//"of" is the short form of the same type
let rgb: [3 of Int] = [2551280]

print("point[1] is \(point[1])")
//point[1] is 4

print("rgb count is \(rgb.count)")
//rgb count is 3