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