in reply to Printing all values of an AoH

use strict; use warnings; my $AoH = [{ keyname => "aaaaa" }, { keyname => "bbbbb" }, { keyname => "ccccc" }]; print map ((values %$_, " "), @$AoH), "\n";
This doesn't leave the separator set differently from default, and doesn't print keys too.