Help for this page

Select Code to Download


  1. or download this
    #Test.pm
    package Test;
    ...
    sub func2  { return map{ uc }@_ }
    
    1;
    
  2. or download this
    #Test.pl
    use strict;
    ...
     use Test qw(:Both);
     print func1(@list),"\n";
     print func2(@list),"\n";