Skip to content

Commit

Permalink
Added HelloWorld(Objective-C).m
Browse files Browse the repository at this point in the history
A program that is has written in Objective-C to display Hello World!
  • Loading branch information
mjperpinosa authored Oct 2, 2018
1 parent edca2cb commit d9c1162
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions HelloWorld(Objective-C).m
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#import <Foundation/Foundation.h>

int main(int argc, const char * argv[]) {
@autoreleasepool {
NSLog(@"Hello World!");
}
return 0;
}

0 comments on commit d9c1162

Please sign in to comment.