http://qs321.pair.com?node_id=11118798


in reply to Where to put data that goes with a module?

Either use File::ShareDir as swl suggests, or if there's a one-to-one correspondence between modules and data (i.e. your module only needs one data file, and the data file will only be used by that one module) use a __DATA__ section.

Replies are listed 'Best First'.
Re^2: Where to put data that goes with a module?
by Marshall (Canon) on Jul 02, 2020 at 15:42 UTC
    Another option to allow essentially multiple DATA segments is Inline::Files