Devel::FindAmpersand - Report exactly where Perl sawampersand


Devel-SawAmpersand documentation Contained in the Devel-SawAmpersand distribution.

Index


Code Index:

NAME

Top

Devel::FindAmpersand - Report exactly where Perl sawampersand

SYNOPSIS

Top

    use Devel::FindAmpersand ();

DESCRIPTION

Top

Use this module only during development and wait for your script to finish. It will report where your script gets infected by a sawampersand operation.

LICENSE

Top

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html

SEE ALSO

Top

Devel::SawAmpersand, B::FindAmpersand


Devel-SawAmpersand documentation Contained in the Devel-SawAmpersand distribution.

package Devel::FindAmpersand;

use strict;
use B::FindAmpersand ();

END {
    B::FindAmpersand::compile()->();
}

1;

__END__