Help for this page

Select Code to Download


  1. or download this
    perl -we 'use new qw(My::Very::Long::Module x foo 42); print $x->get_f
    +oo;'
    
  2. or download this
    perl -we 'use My::Very::Long::Module; our $x = My::Very::Long::Module-
    +>new( foo => 42 ); print $x->get_foo;'
    
  3. or download this
    package new;
    
    ...
    };
    
    1;