13 lines
182 B
13 lines
182 B
10 years ago
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface Hello: NSObject
|
||
|
@property NSString* s;
|
||
|
@end
|
||
|
|
||
|
@implementation Hello
|
||
|
NSString* m() {
|
||
|
Hello* hello = nil;
|
||
|
return hello->_s;
|
||
|
}
|
||
|
@end
|