Help for this page

Select Code to Download


  1. or download this
    $|=1; # $| is undef by default - which means use buffering - define it
    + as 1 - and it instantly writes.
    print FILE scalar localtime;
    print FILE " ## Exit\n";
    close FILE;
    
  2. or download this
    $close = localtime;
    print FILE "$close ## Exit\n";
    close FILE;