Skip to content

Instantly share code, notes, and snippets.

@charliemaffitt
Created October 24, 2012 21:35
Show Gist options
  • Save charliemaffitt/3949054 to your computer and use it in GitHub Desktop.
Save charliemaffitt/3949054 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSString *testString;
testString = [[NSString alloc] init];
testString = @"Here's a test string in testString!";
NSLog(@"testString: %@", testString);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment