in reply to Calling subs with &
use strict; &use(); #use(); #this doesn't work sub use { print "In sub\n"; } [download]
It's not bad for obfuscation though.
package Just_another_Perl_Hacker; sub print {($_=$_[0])=~ s/_/ /g; print } sub __PACKAGE__ { & print ( __PACKAGE__)} & __PACKAGE__ ( ) [download]
Abigail