Help for this page

Select Code to Download


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