Help for this page

Select Code to Download


  1. or download this
    package Foo::Utils {
       sub frobnicate {
    ...
    ...; # some time later
    
    $utils->frobincate;        # call as a class method
    
  2. or download this
    package Foo::Utils {
       sub new { bless [], shift }
    ...
          print "frobnicating!\n";
       }
    }
    
  3. or download this
    package Foo::Utils {
       use Moo;
    ...
          print "frobnicating!\n";
       }
    }