Help for this page

Select Code to Download


  1. or download this
    use My::Module qw(call);
    
    call(\&foo);
    
    sub foo { ... };
    
  2. or download this
    use My::Module call => 'foo';
    
    sub foo { ... };
    
    # foo is called at the end