Next 3.0 Data::NeatDump Prev

Data::NeatDump

    use Data::NeatDump;

    print dump($long_struct);
    print Dump($data1, $data2, $data3);
    [
        "First element",
        {
            key1 => "Short string",
            key2 => "Another string",
        },
        [
            2.71828182845905,
            3.14159265358979,
        ],
    ]

Why not Data::Dumper?

Several reasons:

Next Useful Perl Modules Prev