in reply to Re: DBIx::Class in a single file
in thread DBIx::Class in a single file

A trick you can use to make the human read code flow more like you expect-

# package stuff I expect/want to see first. BEGIN { # package stuff the compiler needs to see first. } package main; # my stuff that does stuff and junk. exit 0; # subs, if any __END__ =pod =cut leftover notes...