in reply to Re: Order of END blocks
in thread Order of END blocks
And here's a test script test.pl:# SomeModule.pm package SomeModule; END { print "End of SomeModule\n"; } 1;
Any way to jump in after SomeModule's END block?# test.pl use SomeModule; END { print "End of main\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Order of END blocks
by meetraz (Hermit) on May 28, 2004 at 18:54 UTC |