Acme::Meta - Enhances the Meta package


Acme-Meta documentation Contained in the Acme-Meta distribution.

Index


Code Index:

NAME

Top

Acme::Meta - Enhances the Meta package

SYNOPSIS

Top

  use Acme::Meta; # before using Meta

DESCRIPTION

Top

Enhances the Meta package.

SEE ALSO

Top

The Meta:: meta-package

AUTHOR

Top

Nicholas Clark, <nick@ccl4.org>

COPYRIGHT AND LICENSE

Top


Acme-Meta documentation Contained in the Acme-Meta distribution.

package Acme::Meta;

use 5.004;
use strict;

require Exporter;
use vars qw($VERSION);

BEGIN {
  *Meta::Meta:: = *main::Meta::;
  *Acme::Meta::Meta:: = *main::Meta::;
  $^W = 1;
}

$VERSION = '0.02';

1;
__END__