Help for this page

Select Code to Download


  1. or download this
    sub Foo::Bar::f {}
    
  2. or download this
    {
       package Foo::Bar;
       sub f {}
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
    Bar::f();
    # Bar
    # bar!