Help for this page

Select Code to Download


  1. or download this
    #!perl 
    $program = "c:\\progdir\\bin\\proggie.exe"; 
    ...
    } 
    close (LF); 
    close (PRG);
    
  2. or download this
    #!perl 
    use strict; # ALWAYS! (Why? Helps catch typos before run time... among
    + other things)
    ...
    } 
    close(LF) or die $!; 
    close(PRG) or die $!;
    
  3. or download this
    C:\>perl -we "$i=0;$stop=time +2;while(1){print $i++, qq!\n!; last if 
    +time > $stop}"