[Omaha.pm] Wow! I used map!

Andy Lester andy at petdance.com
Wed Apr 6 22:26:57 PDT 2005


>    push @files, map { $_ = "$dir/$_" } readdir DIR;

Don't set $_.

push @files, map { "$dir/$_" } readdir DIR;

-- 
Andy Lester => andy at petdance.com => www.petdance.com => AIM:petdance


More information about the Omaha-pm mailing list