Help for this page

Select Code to Download


  1. or download this
    use My::Module { hairiness => 2 }, qw(:core frobnicate);
    
    frobnicate( $foo ); # with hairiness = 2
    
  2. or download this
    package My::Module;
    
    ...
        my $x = shift;
        return $x; # TODO actually use parameters here
    };