Subject: | Multiline prototypes |
#!/usr/bin/perl -w
use signatures;
sub foo($this,
$that)
{
return "$this $that";
}
print foo("foo", "bar"), "\n";
__END__
syntax error at test.plx line 7, near "$that)
"
(Might be a runaway multi-line () string starting on line 5)
Execution of test.plx aborted due to compilation errors.