Created
June 17, 2015 19:53
-
-
Save aclissold/3b95f35d43284a29d25c to your computer and use it in GitHub Desktop.
Objective-C from the command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// cc -fobjc-arc -framework Foundation main.m | |
#import <Foundation/Foundation.h> | |
int main(int argc, const char * argv[]) { | |
@autoreleasepool { | |
NSLog(@"hello, world"); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment