in reply to Re: Sub routines not playing fair
in thread Sub routines not playing fair
Yes, the code would help. For example, if it's this, then we can explain ;-)
sub foo { sub BEGIN { print "BEGIN\n"; } sub INIT { print "INIT\n"; } sub END { print "END\n"; } }
|
|---|