Help for this page

Select Code to Download


  1. or download this
    package foo;
      BEGIN{
            $text = "Hello\n";
            }
    sub subroutine {print $text} return 1;
    
  2. or download this
    require foo;
    foo::subroutine();
    ...
    #will print
    
    Hello