Skip to content

Instantly share code, notes, and snippets.

Created August 7, 2011 08:15
Show Gist options
  • Save anonymous/1130185 to your computer and use it in GitHub Desktop.
Save anonymous/1130185 to your computer and use it in GitHub Desktop.
Employee.m
@implementation Employee
@synthesize name, age;
-(void) dealloc {
[name release];
[super release];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment