Skip to content

Instantly share code, notes, and snippets.

@eamonnfaherty
Created March 15, 2012 13:54
Show Gist options
  • Save eamonnfaherty/2044307 to your computer and use it in GitHub Desktop.
Save eamonnfaherty/2044307 to your computer and use it in GitHub Desktop.
creator
class Box() {
function Box(width:int, height:int) {
}
public static function bigBox():Square {
return new Square(200,200);
}
public static function littleBox():Square {
return new Square(20,20);
}
}
//edit a factory is nicer / more testable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment