Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    ********************
    O D E
    ********************
    
  2. or download this
    use strict;
    use warnings;
    ...
    my @arr2 = ('a', 'b');
    
    do_stuff(@arr1, @arr2);
    
  3. or download this
    do_stuff(10, 20, 'a', 'b');
    
  4. or download this
    my @x = 10;
    
  5. or download this
    my @x = (10);