Advertisement
bvn13

Untitled

Feb 7th, 2013
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. package ASObjects::MValue; {
  2.  
  3. use strict;
  4. use Moose;
  5. use Data::Dumper;
  6.  
  7. has 'value' => (
  8. is => 'rw',
  9. isa => 'Any',
  10. default => undef
  11. );
  12.  
  13. };
  14.  
  15. 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement