Help for this page

Select Code to Download


  1. or download this
    package Bar
    warn "blaah";
    sub bar { }
    use interface Foo;
    1
    
  2. or download this
    package Bar;
    sub BEGIN {
       eval "use Bar" if $loaded_for_the_first_time;
       do_stuff();
    }
    
  3. or download this
    # Foo.pm
    use Bar;
    
    # Bar.pm
    use Foo;