Help for this page

Select Code to Download


  1. or download this
    sub Foo::INIT { print "Hello world\n" } &Foo::INIT;
    
  2. or download this
    *Foo::INIT = sub { print "Hello world\n" }; &Foo::INIT;
    __END__
    Hello world