mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-05 14:11:00 +00:00
17 lines
206 B
Mathematica
17 lines
206 B
Mathematica
|
#import <Foundation/NSObject.h>
|
||
|
#import <Foundation/NSString.h>
|
||
|
|
||
|
@interface TestBundle : NSObject
|
||
|
{
|
||
|
|
||
|
}
|
||
|
-(NSString *)test;
|
||
|
@end
|
||
|
|
||
|
@implementation TestBundle
|
||
|
-(NSString *)test
|
||
|
{
|
||
|
return @"Something";
|
||
|
}
|
||
|
@end
|