Help for this page

Select Code to Download


  1. or download this
    use IO::Scalar;
    my ( $STD1 $STD2 );
    ...
    open FILE, ">test.txt";
    print FILE $STD2;
    close FILE;
    
  2. or download this
    open FILE, ">test.txt";
    select FILE;
    ...
    print <<DONE;
    all that stuff again. I am
    DONE