Skip to content

Instantly share code, notes, and snippets.

@andrew-dixon
Last active August 29, 2015 14:19
Show Gist options
  • Save andrew-dixon/d424e56bda1823a26316 to your computer and use it in GitHub Desktop.
Save andrew-dixon/d424e56bda1823a26316 to your computer and use it in GitHub Desktop.
//Person
component {
if(isNull(static.instanceCount))
static.instanceCount=1;
else
static.instanceCount++;
public static numeric function personInstancesCreated() {
return isNull(static.instanceCount))?0:static.instanceCount;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment