in reply to Re: Re: Re: Execution order of END/CHECK vs BEGIN/INIT
in thread Execution order of END/CHECK vs BEGIN/INIT
package A; use B; BEGIN { ... } END { ... }
Then the BEGIN blocks of B are run before the one's in A (because the compiler sees them earlier), while the END blocks of A are run after any END blocks of B (because the compiler sees the one in A after the one's in B).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Execution order of END/CHECK vs BEGIN/INIT
by hossman (Prior) on Jun 27, 2003 at 22:32 UTC | |
by Abigail-II (Bishop) on Jun 27, 2003 at 22:53 UTC | |
by belden (Friar) on Jun 27, 2003 at 23:28 UTC |