in reply to Re: Is this really random?
in thread Is this really random?
Overriding prototypes is not all it does!
sub foo { print "Called foo(" . join(',', @_) . ")\n"; } sub bar { print "Called bar(" . join(',', @_) . ")\n"; print "foo(); : "; foo(); print "&foo; : "; &foo; } bar(1,2,3);
Jenda
Enoch was right!
Enjoy the last years of Rome.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Is this really random?
by tobyink (Canon) on Nov 22, 2012 at 15:47 UTC |