Following this example,
I tried to override print with my own:
BEGIN {*CORE::GLOBAL::print = sub {print 1};}
print 2;
But it turns out that it doesn't work,2 is still printed instead of 1.
Why?
|
Following this example, I tried to override
But it turns out that it doesn't work, Why? |
|||
|
|
|
Because it has very special parsing rules that cannot be replicated by a normal function, the
You can find out which operators can be overriden using
PS — You'd have an infinite loop if your code had actually overridden |
|||||||||||
|
|
From this answer to another question:
|
|||||
|