- or download this
CallSub($Igot,$TheBlues);
- or download this
my ($Igot,$TheBlues) = @_;
- or download this
@Array = qw(one two three four);
$Igot = 'whatever';
$TheBlues = 'whateverelse';
- or download this
$Igot = shift(@Array);
$TheBlues = shift(@Array);
CallSub(@Array);
- or download this
my (@PassedArray) = @_;
my $TheBlues = $PassedArray[0];
my $IGot = $PassedArray[1];