Help for this page

Select Code to Download


  1. or download this
    while (defined( $_ = <> )) {
       ...
    }
    
  2. or download this
    my $sock = IO::Socket::INET->new(...)
       or die(...);
    
  3. or download this
    ( my $copy = $str ) =~ s/\\/\\\\/g;