They are executed in order of appearance, with the additional requirement that modules that are 'used' appear when the compiler passes by, and modules that are 'required' appear during run time.

So, if the script has "use A;" before "use B;", the compiler will complile "A" first (and during that compilation, it will compile any 'used' modules in A), then, when it has compiled A, it will compile B.

If 2 modules have dependencies on each other an they both do some initialization before defining subs, how can your guarantee which order the initialization code is run in?
It would be a lot easier if you don't have circular dependencies. One day, you, or someone coming after you, will change the code that requires A to be compiled before B, while at the same time, it requires B to be compiled before A.

Anyway, you will have to use BEGIN and INIT blocks, remembering that 'use' is a BEGIN block as well. BEGIN blocks are executed as soon as they are compiled. INIT blocks are run before the main program starts, and they are run in the order they are compiled in.

Perl --((8:>*

In reply to Re: Understanding order of module compilation and execution by Perl Mouse
in thread Understanding order of module compilation and execution by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.