Skip to content

Instantly share code, notes, and snippets.

@0branch
0branch / Object.pm
Created April 2, 2011 16:59
Object class, first draft.
package Object;
use Moose;
has 'name' => (
isa => 'Str',
is => 'rw',
required => 1,
);
has 'description' => (
#!/usr/bin/env perl
use strict;
use warnings;
use feature 'say';
say "Hello from Gist";