Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Declaring a Variable [for BEGINNERS]

by ikegami (Patriarch)
on Dec 27, 2006 at 21:17 UTC ( [id://591941]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $region1;
    my $region2;
    ...
          ...
       }
    }
    
  2. or download this
    foreach my $region1 (@region_list) {
       foreach my $region2 (@region_list) {
          ...
       }
    }
    
  3. or download this
    my $region;
    my $region1;
    ...
    foreach $region1 (@region_list) {
       ...
    }
    
  4. or download this
    foreach my $region (@region_list) {
       ...
    ...
    foreach my $region (@region_list) {
       ...
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://591941]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-03-28 22:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found