+-,-----+
V |
>>-delete(---index-+-)-----------------------------------------><
Example 5.136. Array class - delete method
a = .array~of("Fred", "Mike", "Rick", "David")
a~delete(2) -- removes "Mike", resulting in the array
-- ("Fred", "Rick", "David")