hurricup has asked for the wisdom of the Perl Monks concerning the following question:
Another strange thing encountered. This time in Net::NNTP
You may see last: in the end of the block. Is this a label here (never used though)? Or kinda seldom usage of last command?foreach my $h (@{$hosts}) { $connect{PeerAddr} = $h; $obj = $type->SUPER::new(%connect) or next; ${*$obj}{'net_nntp_host'} = $h; ${*$obj}{'net_nntp_arg'} = \%arg; if ($arg{SSL}) { Net::NNTP::_SSL->start_SSL($obj,%arg) or next; } last: }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Ambiguous last usage in Net::NNTP
by kcott (Archbishop) on Jul 11, 2015 at 21:30 UTC |