Help for this page

Select Code to Download


  1. or download this
    use strict;
    use lib ('./');
    ...
    
    Alice->mTest2 ("Some stuff", "and something else");
    1;
    
  2. or download this
    use strict;
    package Alice;
    ...
      my ($junk, $and) = @_;
      print "$junk=$junk\n\$and=$and";
    }