package a;
sub func {
print 1;
}
package main;
a::->func;
IMO it's enough to have a::func,a->func.
a::->func; looks very strange to me, why Perl supports this kind of strange looking syntax?
IMO it's enough to have
| |||
|
feedback
|
|
To quote chromatic's excellent recent blog post on the topic at Modern Perl blog: "To avoid bareword parsing ambiguity." To illustrate why such syntax is useful, here's an example evolved from your sample:
| ||||
|
feedback
|
|
etc
| |||||||
feedback
|
v97->func()– ikegami Sep 5 '11 at 6:39