Help for this page

Select Code to Download


  1. or download this
    Uses the value of EXPR as a filename and executes the contents of the 
    +file as a Perl script. Its primary use is to include subroutines from
    + a Perl subroutine library. 
    
    ...
    
        scalar eval `cat stat.pl`;
    
  2. or download this
    do ("print");
    print $!, "\n" if $!;
    
  3. or download this
    do print;
    print $!, "\n" if $!;
    
  4. or download this
    $_ = 1;
    do print;
    print "\n";
    print $!, "\n" if $!;
    
  5. or download this
    $_ = 1;
    do (print);
    print "\n";
    print $!, "\n" if $!;