in reply to Re^2: Problems with map(function, array)
in thread Problems with map(function, array)
DB<139> sub my_uc { my $c = shift; return uc($c); } DB<140> my_uc() DB<141> @a = map my_uc, a..c => ("", "", "")
keep in mind no argument means $c is undef!
Cheers Rolf
|
|---|