summaryrefslogtreecommitdiff
path: root/tests/console_objc/src/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'tests/console_objc/src/main.m')
-rwxr-xr-xtests/console_objc/src/main.m10
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;
+}