| Acme-LAUTER-DEUTSCHER documentation | Contained in the Acme-LAUTER-DEUTSCHER distribution. |
Acme::LAUTER::DEUTSCHER - make your program's output indistinguishable from someone yelling German
use Acme::LAUTER::DEUTSCHER;
print "Timmy pet the cute puppy.\n";
Running the above produces the following output:
DIETER HAUSTIER DER NETTE WELPE!
Ian Langworth, <ian@cpan.org>
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 2005 Ian Langworth, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__