I am new to Perl, and I used them like this
$_
foreach (@list) {
print "$_\n";
}
@_
sub search {
my ($no, @list) = @_;
}
How exactly do these underscore variables work in Perl? What are the other constructs where they are useful?
|
I am new to Perl, and I used them like this
How exactly do these underscore variables work in Perl? What are the other constructs where they are useful? |
|||||||||||
|
|
This is the sort of question which indicates you really should be reading a book, and perhaps the rest of the perl tag faqs. Nevertheless,
This doing a lot of work setting and inspecting the
Other constructs which set Other constructs which use I'd advise this: while you are learning Perl, don't use As mentioned elsewhere, |
|||||
|