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