- or download this
while (<DATA>) {
chomp;
...
&foobar()
foobar()
&foobar("asdf")
- or download this
foobar()
foobar()
foobar()
foobar()"asdf")
- or download this
while (<DATA>) {
chomp;
$_ =~ s/^(&)(\w+(\([\"\'\$\w]*\))?)(\(\))$/$2()/;
print "$_\n";
}
- or download this
&foobar
foobar()
foobar()
&foobar("asdf")