Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

On Interfaces and APIs

by eyepopslikeamosquito (Archbishop)
on Jun 04, 2006 at 12:50 UTC ( [id://553487]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    select((select($fh), $|=1)[0]);
    
  2. or download this
    use IO::Handle;    # update: not needed for Perl 5.14+
    # ...
    $fh->autoflush();
    
  3. or download this
    print $file $name, $rank, $serial_num, "\n";
    
  4. or download this
    print {$file} $name, $rank, $serial_num, "\n";
    
  5. or download this
    use IO::Handle;
    $file->print( $name, $rank, $serial_num, "\n" );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-03-28 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found