Help for this page

Select Code to Download


  1. or download this
    #!/perl/bin/perl
    #
    ...
        print $handles[$i] ,"Hi how the hell are ya!";
        close $handles[$i];
    }
    
  2. or download this
    String found where operator expected at test.pl line 31, near "] "Hi h
    +ow the
            hell are ya!"" (#1)
    ...
    
    Uncaught exception from user code:
            Undefined subroutine &main::mprint called at test.pl line 31.
    
  3. or download this
    open ONE, ">one.tmp";
    push @handles, *ONE;
    ...
    push @handles, *TWO;
    open THREE, ">three.tmp";
    push @handles, *THREE;