Home
Perl
Array
CGI
Class
Data Type
Database
File
GUI
Hash
Language Basics
Network
Regular Expression
Report
Statement
String
Subroutine
System Functions
Win32
XML
Menu
Working join with map : map « Hash « Perl
Perl
Hash
map
Working join with map
print join(
", "
, (map {my $value = $_; $value *= 2} (1 .. 10)));
Related examples in the same category
1.
Using map with hash