That's not what my code does, nor was I saying that $c was one thing at compile time and one at run time. This is what I do:
UPDATE: Meant to reply to Re^5: How do I pretend a reference isn't a reference# init the app sub _ { 'compile time '.@_}; my $compile = _(1); sub foo { _(1) }; # finished compiling, so redefine sub _ sub _ { 'run time '.@_}; # run the code my $run = foo(); print " $compile - $run\n" __END__ compile time 1 - run time 1
In reply to Re^5: How do I pretend a reference isn't a reference
by clinton
in thread How do I pretend a reference isn't a reference
by clinton
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |