Perl (dot-equals) で「.=」とはどういう意味ですか? 以下のコード例 (while 句内):
if( my $file = shift @ARGV ) {
$parser->parse( Source => {SystemId => $file} );
} else {
my $input = "";
while( <STDIN> ) { $input .= $_; }
$parser->parse( Source => {String => $input} );
}
exit;
洞察をありがとう。