Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Common Beginner Mistakes

by Elias (Pilgrim)
on Jan 27, 2001 at 16:15 UTC ( [id://54746]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for ($results = 2; $results <34; $results++) {
                my $file="current$results.res";
    ...
                  ....
                }
    
  2. or download this
    for ($results = 2; $results <34; $results++) {
                    my $file="current".$presence.".res";
                    ....
                    }
    
  3. or download this
     @tree1=@samples[0..2];
      ...  (another 10 of those)
    ...
     foreach $patch(@$arrayname) {
           ... do something
           }
    
  4. or download this
     my %trees = (1 => "@samples[0..2]", 
                              ... (another 10 of these)
    ...
                    foreach $patch(@patches) {
                                 ... do something
                     }
    

Log In?
Username:
Password:

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

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

    No recent polls found