my $aleph = test(1,2); my $test = $_ ? $_ : '$_ is empty'; print "$aleph : $test"; sub test { local $_; my ($a, $b) = (@_); $_ = 'test'; }