in reply to Data Dumper Japh
update: sorry about not using a spoiler tag...
sub Oxff cannot start with a number...(without symbolic refs tricks like
% stephan@armen (/home/stephan) % % perl -we ' *{"11abc"} = sub { print q[ok] }; *{"11abc"}{CODE}->()' ok % stephan@armen (/home/stephan) % % perl -we ' *{"11abc"} = sub { print q[ok] }; &{*{"11abc"}}()' ok [download]
actually I think the second form could work with less braces ...humm
You can't just omit the braces, but you can do this instead:
ambrus++