in reply to Re^3: Debugging globjects/globs
in thread Debugging objects

I rarely use the debugger, so thats how I remember to run some code, kinda like cpan client .. that dd works without x is news to me

Replies are listed 'Best First'.
Re^5: Debugging globjects/globs
by LanX (Saint) on Aug 24, 2017 at 12:39 UTC
    I have no time to install those modules, but returning an empty list seems obvious

    sub dd { Dump(@_); (); }

    e.g.

    DB<18> sub dd { (1,2,3); } DB<19> x dd \@a 0 1 1 2 2 3

    Cheers Rolf
    (addicted to the Perl Programming Language and ☆☆☆☆ :)
    Je suis Charlie!

      I have no time to install those modules, but returning an empty list seems obvious

      Heh, and then?