Help for this page

Select Code to Download


  1. or download this
    # Method 1
    use Mymodule qw(&func1 &func2);
    
    # Method 2
    autouse Mymodule => qw(func1 func2);
    
  2. or download this
    use autouse Mymodule => qw(func1 func2);