App-PPE

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

Build.PL
Changes
LICENSE
META.json
README.md
cpanfile
img/example-critical.png
img/example-warnings.png
lib/App/PPE.pm
minil.toml
script/ppe
t/00_compile.t
t/01_basic.t
META.yml
MANIFEST

README.md  view on Meta::CPAN


    use strict;
    use warnings;

    my $str;
    warn $str;

This code outputs following result:

<div>
    <div><img src="https://raw.github.com/kfly8/App-PPE/master/img/example-warnings.png"></div>
</div>

When you are writing such as following:

    use strict;
    use warnings;

    sub f {

This code outputs following result:

<div>
    <div><img src="https://raw.github.com/kfly8/App-PPE/master/img/example-critical.png"></div>
</div>

# SEE ALSO

[perldiag](https://metacpan.org/pod/perldiag)

script/ppe  view on Meta::CPAN

  use strict;
  use warnings;

  my $str;
  warn $str;

This code outputs following result:

=begin html

<div><img src="https://raw.github.com/kfly8/App-PPE/master/img/example-warnings.png"></div>

=end html


When you are writing such as following:

  use strict;
  use warnings;

  sub f {

This code outputs following result:

=begin html

<div><img src="https://raw.github.com/kfly8/App-PPE/master/img/example-critical.png"></div>

=end html


=head1 SEE ALSO

L<perldiag>



( run in 1.634 second using v1.01-cache-2.11-cpan-df04353d9ac )