blob: af1ae3fda2bf97177b59bbfeff3c55ae1974aeb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import <Foundation/Foundation.h>
#import <test/test.h>
int main(int argc, char** argv)
{
@autoreleasepool
{
NSLog(@"add(1, 2): %d", add(1, 2));
Test* t = [[Test alloc] init];
[t hello];
}
return 0;
}
|