foo
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Scalar.pm
CommitLineData
5f654d8e 1package Moose::Autobox::Scalar;
2use Moose::Role 'with';
3
4our $VERSION = '0.01';
5
31d40d73 6with 'Moose::Autobox::String',
7 'Moose::Autobox::Number';
6cf5bcf2 8
9# ::Value requirement
10
31d40d73 11sub print { CORE::print $_[0] }
5f654d8e 12
31d40d73 131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
21Moose::Autobox::Scalar - the Scalar role
22
23=head1 SYNOPOSIS
24
25 use Moose::Autobox;
26 use autobox;
27
28=head1 DESCRIPTION
29
30=head1 BUGS
31
32All complex software has bugs lurking in it, and this module is no
33exception. If you find a bug please either email me, or add the bug
34to cpan-RT.
35
36=head1 AUTHOR
37
38Stevan Little E<lt>stevan@iinteractive.comE<gt>
39
40=head1 COPYRIGHT AND LICENSE
41
42Copyright 2006 by Infinity Interactive, Inc.
43
44L<http://www.iinteractive.com>
45
46This library is free software; you can redistribute it and/or modify
47it under the same terms as Perl itself.
48
49=cut