Help for this page

Select Code to Download


  1. or download this
    # Import nothing -- fastest but requires additional coding
    use Some::Module ();
    ...
    use Some::Module;
    ...
    any_function();
    
  2. or download this
    BEGIN { print "Loading app (could take a second or two) ...\n"; }