Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
        print "No Beatle method found on this line: $_\n";
      }
    }
    
  2. or download this
    while(<STDIN>) {
      chomp;
    ...
        print "No Beatle method found on this line: $_\n";
      }
    }
    
  3. or download this
    # Note that this line isn't supposed to compile...
    if (m/^static\s+\w+\s+(???@names???)\W.*/) {
    
  4. or download this
    static int lars(...);
    static bool george(...);
    static int thom(...);
    
  5. or download this
    No Beatle method found on this line: static int lars(...);
    Beatle method "george" found on this line: static bool george(...);
    No Beatle method found on this line: static int thom(...);