Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 897 Bytes

README.md

File metadata and controls

44 lines (27 loc) · 897 Bytes

Build Status

NAME

ppe - Prettify Perl Error messages

SYNOPSIS

% perl ~/foo.pl 2>&1 | ppe
foo.pl:5: [WARN] (W) Use of uninitialized value in warn

DESCRIPTION

ppe is a prettifier for Perl error messages.

When you are writing such as following:

use strict;
use warnings;

my $str;
warn $str;

This code outputs following result:

When you are writing such as following:

use strict;
use warnings;

sub f {

This code outputs following result:

SEE ALSO

perldiag