Help for this page

Select Code to Download


  1. or download this
    +% find ! -name "*~"
    .
    ...
    ./lib/Framework/Op/WalkTheDog.pm
    ./lib/Framework/Op/CookDinner.pm
    ./runner.pl
    
  2. or download this
    Op PayBills
    Op TakeOutTrash
    Op WalkTheDog
    
  3. or download this
    #!/usr/bin/env perl
    use strict;
    ...
        my $op = $class->new;
        $op->execute;
    }
    
  4. or download this
    package Framework::Op::PayBills;
    
    ...
    }
    
    1;
    
  5. or download this
    package Framework::Op::TakeOutTrash;
    
    ...
    }
    
    1;
    
  6. or download this
    +% perl -I lib runner.pl
    paying the bills at lib/Framework/Op/PayBills.pm line 7.
    taking out the trash at lib/Framework/Op/TakeOutTrash.pm line 7.
    walking the dog at lib/Framework/Op/WalkTheDog.pm line 7.