mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
18 lines
219 B
Plaintext
Executable File
18 lines
219 B
Plaintext
Executable File
@implementation Person : CPObject
|
|
{
|
|
CPString _name;
|
|
int _age;
|
|
}
|
|
|
|
- (id) init
|
|
{
|
|
self = [super init];
|
|
if(self){
|
|
_name = @"Tyler Durden"
|
|
_age = 27;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|