- 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`;
- or download this
do ("print");
print $!, "\n" if $!;
- or download this
do print;
print $!, "\n" if $!;
- or download this
$_ = 1;
do print;
print "\n";
print $!, "\n" if $!;
- or download this
$_ = 1;
do (print);
print "\n";
print $!, "\n" if $!;