Help for this page

Select Code to Download


  1. or download this
    open(TICKS,"textfile")
       or die "Can't open textfile: $!\n";
    
  2. or download this
    my $line_number = 0;
    while (<TICKS>) {                   # sic
       print "line $line_number: $_";
       $line_number++;
    }