mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
17 lines
239 B
Objective-C
17 lines
239 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface objc_self_test : NSObject
|
|
-(int) getValue;
|
|
@end
|
|
|
|
@implementation objc_self_test
|
|
-(int) getValue
|
|
{
|
|
return 3;
|
|
}
|
|
@end
|
|
|
|
int getValue ()
|
|
{
|
|
return [[[objc_self_test alloc] init] getValue];
|
|
}
|