diff options
Diffstat (limited to 'tests/console_objc/src')
| -rwxr-xr-x | tests/console_objc/src/main.m | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/console_objc/src/main.m b/tests/console_objc/src/main.m new file mode 100755 index 000000000..61a3f5875 --- /dev/null +++ b/tests/console_objc/src/main.m @@ -0,0 +1,10 @@ +#import <Foundation/Foundation.h> + +int main(int argc, char** argv) +{ + @autoreleasepool + { + NSLog(@"hello world!"); + } + return 0; +} |
