Removes all of the contents from @array.
Removes all of the contents from %hash.
@array, %hash - the array to remove the contents from
@a = @(1, 2, 3, 4, 5); clear(@a); println("@a is: " . @a);
@a is: @()