Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Learning to *really* love references

by tadman (Prior)
on Jul 31, 2002 at 15:15 UTC ( [id://186512]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    process($data_ref, \@set_up, $template, $fd_out);
    
    sub process
    ...
              # ...
         }
    }
    
  2. or download this
    my $fd_out;
    open($fd_out, $what_file);
    
    while (<$fd_out>) { # ... }
    
  3. or download this
    my $fd_out = IO::File->new($what_file, 'r');
    
    while (<$fd_out>) { # ... }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-19 00:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found