Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    
    ...
    b::test($value);
    print "\nVALUE = $value\n";
    }
    
  2. or download this
    package b;
    print "\nINSIDE-PACKAGE\n";
    ...
    return $value;   ## If I comment this
    }
    1;