| Acme-BlahBlahBlah documentation | Contained in the Acme-BlahBlahBlah distribution. |
Acme::BlahBlahBlah - Perl extension for blah blah blah
use Acme::BlahBlahBlah;
sub bla { blah_blah_blah }
Perl 6 will have a ... operator that dies if it is ever evaluated. This is an implementation
of it, called blah_blah_blah.
Blah blah blah.
blah_blah_blah, which dies if it's ever evaluated.
Yada::Yada::Yada, which does the same thing for a different reason.
David Glasser, <glasser@bestpractical.com>
Copyright (C) 2005 by David Glasser
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
| Acme-BlahBlahBlah documentation | Contained in the Acme-BlahBlahBlah distribution. |
package Acme::BlahBlahBlah; use 5.008003; use strict; use warnings; use Carp; require Exporter; our @ISA = qw(Exporter); our %EXPORT_TAGS = ( 'all' => [ qw( blah_blah_blah ) ] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( blah_blah_blah ); our $VERSION = '0.01'; sub blah_blah_blah { croak "blah blah blah"; } 1; __END__ # Below is stub documentation for your module. You'd better edit it!