Objects with Moose 

package Article;

use Moose;

has 'title' => (is => 'rw');
has 'body'  => (is => 'rw');

# Interesting stuff ...