mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 13:35:42 -04:00
8 lines
125 B
Objective-C
8 lines
125 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "myclass.h"
|
|
|
|
int main() {
|
|
id object = [MyClass new];
|
|
return 0; // break here
|
|
}
|