in reply to Re^4: Passing on "use"s
in thread Passing on "use"s

You're right, a more correct, more scalable version would use sub import { ... }

package GenericModule; use Import::Into; sub import { feature ->import::into(1, 'say'); utf8 ->import::into(1); List::Util->import::into(1, 'shuffle'); } 1;


The way forward always starts with a minimal test.