1#import <Foundation/NSObject.h>
2#import <stdio.h>
3
4@interface MyClass : NSObject
5+(void) load;
6@end
7
8@implementation MyClass
9+(void) load
10{
11 puts("MyClass::load called");
12}
13@end
14
15int main()
16{
17 MyClass* c = [MyClass new];
18 [c release];
19 return 0;
20}
21