in reply to use (all)
I'm likely to list all the files explicitly if they are all freestanding packages. I'd probably do this with my editor or code generator if practical.
You also could:
But I think you want convenience not finer control.my @reqs = ( "Baz.pm", "Rot.pm" ); foreach (@reqs) { require; }
Update: Mispelling, grammar improvement.
|
|---|