in reply to print variable content

There's the p command that simply prints your variable as print would do. Or x that displays the content of the variable, nested structures included. You can find those commands by typing h in the console. And you can learn more about the debugger in the corresponding documentation and tutorial.

Edit: Thanks to haukex and johngg for pointing out that I gave two links to perldebug instead of one to perldebtut :).

Replies are listed 'Best First'.
Re^2: print variable content
by dovah (Novice) on Sep 06, 2016 at 08:37 UTC
    Thanks, that's exactly what I needed. Cheers.