Acme::LAUTER::DEUTSCHER - make your program's output indistinguishable from someone yelling German


Acme-LAUTER-DEUTSCHER documentation Contained in the Acme-LAUTER-DEUTSCHER distribution.

Index


Code Index:

NAME

Top

Acme::LAUTER::DEUTSCHER - make your program's output indistinguishable from someone yelling German

SYNOPSIS

Top

    use Acme::LAUTER::DEUTSCHER;

    print "Timmy pet the cute puppy.\n";

Running the above produces the following output:

    DIETER HAUSTIER DER NETTE WELPE!

AUTHOR

Top

Ian Langworth, <ian@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-acme-lauter-deutscher@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Top


Acme-LAUTER-DEUTSCHER documentation Contained in the Acme-LAUTER-DEUTSCHER distribution.

package Acme::LAUTER::DEUTSCHER;
use strict;
use warnings;

our $VERSION = '1.02';

use Carp;

use PerlIO::via::LAUTER_DEUTSCHER;

binmode STDOUT, ':via(LAUTER_DEUTSCHER)'
    or croak 'KONNTE NICHT BINMODE VON STDOUT EINSTELLEN!';

1;

__END__