in reply to Debugging Complex Structures
Now you can print out the value of a variable by usinguse Data::Dumper;
If you don't like the x format, you might like this better. Data::Dumper has a lot of options for controlling the way the output looks. See the manual for modre details.p Dumper($var)
|
|---|