Help for this page

Select Code to Download


  1. or download this
    BEGIN {
      require module;
      module->import();
    }
    
  2. or download this
    package Test1;
    
    ...
    sub method { warn "method()" }
    
    1;
    
  3. or download this
    use Test1;
    
    Test1->method();
    
  4. or download this
    Test1::UNITCHECK1 running at Test1.pm line 7.
    Test1::CHECK1 running at Test1.pm line 3.
    Test1::INIT1 running at Test1.pm line 5.
    method() at Test1.pm line 9.
    
  5. or download this
    require Test1;
    
    Test1->method();
    
  6. or download this
    Test1::UNITCHECK1 running at Test1.pm line 7.
    method() at Test1.pm line 9.