Help for this page

Select Code to Download


  1. or download this
    # module
    package foo;
    print ' foo';
    1;
    
  2. or download this
    # calling script
    use foo;
    print ' bar';
    
  3. or download this
    # calling script
    print ' bar';
    use foo;