mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
12 lines
133 B
Objective-C
12 lines
133 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface Foo : NSObject
|
|
-(int) foo;
|
|
@end
|
|
|
|
@implementation Foo
|
|
-(int) foo
|
|
{
|
|
return 3;
|
|
}
|
|
@end
|