in reply to Re: Best practice for configuration variables stored in external file
in thread Best practice for configuration variables stored in external file

Constants belong into the code. Configuration options don't.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
  • Comment on Re^2: Best practice for configuration variables stored in external file

Replies are listed 'Best First'.
Re^3: Best practice for configuration variables stored in external file
by tunafish (Beadle) on Sep 08, 2013 at 01:51 UTC

    I think then that I'm talking about "constants", not "configuration variables". They are not, at any point, edited from within the script.

    Would "use Module" then be the best way to handle this?