Help for this page

Select Code to Download


  1. or download this
    my $aleph = test(1,2);
    my $test = $_;
    print "$aleph : $test";
    ...
        my ($a, $b) = @_;
        $_ = 'test';
    }
    
  2. or download this
    my $aleph = test(1,2);
    my $test = $_ ? $_ : '$_ is empty';
    print "$aleph : $test";
    ...
        my ($a, $b) = (@_);
        $_ = 'test';
    }