| Acme-Elk documentation | Contained in the Acme-Elk distribution. |
Acme::Elk - it isn't Moose
version 1.001
package MyObject;
use Acme::Elk;
has foo => (
is => 'rw',
isa => 'Str',
);
In case you know someone with hang-ups about using Moose, you can use Acme::Elk. It is exactly the same as Moose, but named Acme::Elk.
And it's already 1.000!
Inspired by Rob Kinyon.
Andrew Sterling Hanenkamp, <hanenkamp@cpan.org>
Copyright 2010 Andrew Sterling Hanenkamp.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Acme-Elk documentation | Contained in the Acme-Elk distribution. |
package Acme::Elk; our $VERSION = '1.001'; use Moose (); use Moose::Exporter; Moose::Exporter->setup_import_methods(also => 'Moose');
1;