Help for this page

Select Code to Download


  1. or download this
      package Bar;
      use Smart::Comments;
      sub blather {
        ### $foo
      }
    
  2. or download this
      package Foo;
      use LWP::UserAgent;
    
      sub make_agent { LWP::UserAgent->new }
    
  3. or download this
      package Foo;
      # NOTE: this module needs LWP::UserAgent loaded in order to work
      sub make_agent { LWP::UserAgent->new }
    
  4. or download this
    use runtime LWP::UserAgent;