Help for this page

Select Code to Download


  1. or download this
    package tests;
    
    ...
    
            print "This is myfunction_two Outside\n";
    }
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    $obj->myfunction_one();
    $obj->myfunction_two();
    
  3. or download this
    This is myfunction_one
    This is myfunction_two Outside
    This is myfunction_two Outside
    
  4. or download this
    This is myfunction_one
    This is myfunction_two Inside
    This is myfunction_two Outside