in reply to declare/initialize variables at bottom of script?

Well, you could wrap all your code in subroutines at the top, then do the initializations and call some "main()" routine at the bottom, kinda like C code...

Otherwise, I am unaware of any magic options.

-Scott

  • Comment on Re: declare/initialize variables at bottom of script?

Replies are listed 'Best First'.
Re^2: declare/initialize variables at bottom of script?
by bcarroll (Pilgrim) on Jun 11, 2013 at 18:17 UTC
    I think I used to do that years ago... not sure why I stopped...

    Thanks!