Created
February 11, 2011 22:17
-
-
Save Getty/823154 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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