in reply to require and use strict vars

Use your own dumper :) its only natural :D
sub Dumper { use Data::Dumper(); print Data::Dumper->new([@_]) ->Sortkeys(1) ->Indent(1) ->Useqq(1)->Dump . "\n"; }

Replies are listed 'Best First'.
Re^2: require and use strict vars (Data Dumper for DOOP)
by ForgotPasswordAgain (Vicar) on Dec 06, 2021 at 19:03 UTC
    This would still use the module at compile time, not when the sub is called.
      So? switch the use to require