Help for this page

Select Code to Download


  1. or download this
    package a::b;
    require Exporter;
    ...
    sub qux{ print 'Qux?!'  }
    
    1;
    
  2. or download this
    package a::b::c;
    use a::b qw[ :all ];
    ...
    sub sensible{ print 'sensible' }
    
    1;
    
  3. or download this
    #! perl -slw
    use a::b::c qw[ :all ];
    ...
    qux();
    sensible();
    
  4. or download this
    c:\test>importer
    fooey|
    Baaa!
    Qux?!
    sensible