Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    push @list1, @$tempList[1];
    push @list2, @$tempList[2];
    
  2. or download this
    use strict;
    use warnings;
    ...
    #main program
    DoSomething( \list0, \list1, \list2 );
    
  3. or download this
    use strict;
    use warnings;
    ...
    #main program
    DoSomething();