in reply to Loading module data

DATA is not set until the file is fully compiled. Change
BEGIN { load(); }
to just
load();

Whatever code is at the top level of the .pm or in BEGIN blocks will get executed before use or require returns, so it's still done "at the pt. when a program 'use's my module". Also, it will only get executed the first time use or require is called in a given interpreter, so it's safe to use the module from multiple files. For example:

# mod.pm package mod; sub load { print(<DATA>); print("loaded\n"); } load(); 1; __DATA__ some data
# script.pl BEGIN { print("Before 'use mod;'\n"); } use mod; BEGIN { print("After 'use mod;'\n"); } use mod;

output:

Before 'use mod;' some data loaded After 'use mod;'

Updated

Replies are listed 'Best First'.
Re^2: Loading module data
by ady (Deacon) on Apr 28, 2006 at 06:44 UTC
    You're right ikegami,
    Just putting a load(); in the module is the cleanest way to do the job.
    Thanks!
    allan

    PS:
    I was trying load(); in a BEGIN block in the module, -- that didn't work, and now I see why.