Help for this page

Select Code to Download


  1. or download this
    open(FILE, "datebook.txt") || die "Can't open datebook: $!\n";
       while(<FILE>) {
           print if /Sir Lancelot/;
       }
       close(FILE);
    
  2. or download this
    Can't open datebook: No such file or directory