in reply to Array inside hashes
%hash = (name => foo, list => [1, 2, 3]); $ref = $hash{list}; @array = @$ref; foreach(@array) { print } [download]