package Address; use Moose; has street => (is => 'rw'); has city => (is => 'rw'); has state => (is => 'rw'); has zip => (is => 'rw'); 1;