Skip to content

Instantly share code, notes, and snippets.

@Getty
Created February 11, 2011 22:17
Show Gist options
  • Select an option

  • Save Getty/823154 to your computer and use it in GitHub Desktop.

Select an option

Save Getty/823154 to your computer and use it in GitHub Desktop.
package MySugarTest;
use Sugar;
has name => (
is => 'rw',
isa => 'Str',
);
1;
package MySugarTest::Test00Class;
use Sugar;
extends 'MySugarTest';
1;
package Sugar;
# ABSTRACT: EXPERIMENTAL Write less, do more
use Sugar::Factory;
attributes is => 'rw', isa => 'Str';
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment