>>-section(start-+--------+-)---------------------------------->< +-,items-+
Example 5.156. Array class - section method
a = .array~of(1,2,3,4) -- Loads the array b = a~section(2) -- b = .array~of(2,3,4) c = a~section(2,2) -- c = .array~of(2,3) d = a~section(2,0) -- d = .array~new