Help for this page

Select Code to Download


  1. or download this
    print FILE "How are you?\n";
    
  2. or download this
    open my $file, '>', 'files.txt';
    select $file; # print to $file by default
    doit();
    close $file;
    select STDOUT; # print to STDOUT again by default