Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

About the use of the plural form for the name of variables

by grondilu (Friar)
on Nov 08, 2012 at 11:53 UTC ( [id://1002881]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @friend = qw(john steve carl);
    for my $friend (@friend) {
        say "Hello, $friend!";
    }
    
  2. or download this
    my @friends = qw(john steve carl);
    for my $friend (@friends) {
        say "Hello, $friend!";
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1002881]
Front-paged by Arunbear
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-19 14:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found