Generates an array containing the values within the specified hash.
%hash - the hash to extract the values from.
@|&keys - specifies which keys to extract from the hash.
An array with copies/references to all the values from the specified hash.
%data = %(a => "AT-ST Walker", b => "bat", c => "cat", d => 43); foreach $var (values(%data)) { println($var); }
43 AT-ST Walker cat bat