Help for this page

Select Code to Download


  1. or download this
    use strict;
    sub This::Does::Not::Fail { };
    ...
    # encountered, you'll have a subroutine with this name
    # all ready to go.
    It::Bothers::Me::That::This::Works (); # wassup with THAT?!
    
  2. or download this
    $obj->method;   # Either $obj class' method will exist or
                    # AUTOLOAD had better take care of it later.
    $a=foo Bar;     # Bar will have a foo()!  Or AUTOLOAD...etc.
    &foo;           # Again, you've promised it will exist...