Explain attributes and subclassing
[gitmo/Moose.git] / lib / Moose / Cookbook / Recipe2.pod
index 2b8c4d9..bbd4788 100644 (file)
@@ -8,8 +8,6 @@ Moose::Cookbook::Recipe2 - A simple B<BankAccount> example
 =head1 SYNOPSIS
 
   package BankAccount;
-  use strict;
-  use warnings;
   use Moose;
   
   has 'balance' => (isa => 'Int', is => 'rw', default => 0);
@@ -28,8 +26,6 @@ Moose::Cookbook::Recipe2 - A simple B<BankAccount> example
   }
   
   package CheckingAccount;
-  use strict;
-  use warnings;        
   use Moose;
   
   extends 'BankAccount';
@@ -207,7 +203,7 @@ Stevan Little E<lt>stevan@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2006 by Infinity Interactive, Inc.
+Copyright 2006, 2007 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>