http://www.perlmonks.org?node_id=1210513


in reply to Re^3: Help Changing use into require/import
in thread Help Changing use into require/import

So is there a way to load it dynamically?

  • Comment on Re^4: Help Changing use into require/import

Replies are listed 'Best First'.
Re^5: Help Changing use into require/import
by Corion (Patriarch) on Mar 08, 2018 at 13:50 UTC

    Just use require Capture::Tiny at runtime, like you already did in your code.

    The thing you are missing is that Perl doesn't know that capture should become a function. You can either try to predeclare capture as subroutine to tell that you expect a capture subroutine:

    sub capture(&@); ... require Capture::Tiny; Capture::Tiny->import('capture'); capture { } ...;

    Or go the more explicit route of calling capture in a way that doesn't need parser gymnastics:

    capture( sub { ... }, ... );