Skip to content

Instantly share code, notes, and snippets.

@jaemyeong

jaemyeong/main.m Secret

Created September 15, 2019 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaemyeong/07831e1abbb98b2f56e0986b7992731d to your computer and use it in GitHub Desktop.
Save jaemyeong/07831e1abbb98b2f56e0986b7992731d to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog(@"Hello, World!");
[pool drain];
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment