Mercurial > xcodescriptingbridge
annotate main.m @ 6:7a0e6eeedd92
Style fixes
author | Eric Wing <ewing . public |-at-| gmail . com> |
---|---|
date | Mon, 08 Aug 2011 19:32:30 -0700 |
parents | 5ec52341f221 |
children |
rev | line source |
---|---|
0 | 1 // |
2 // main.m | |
3 // MySampleProject | |
4 // | |
5 // Created by Eric Wing on 7/29/11. | |
6 // Copyright 2011 __MyCompanyName__. All rights reserved. | |
7 // | |
8 | |
9 #import <UIKit/UIKit.h> | |
10 | |
11 int main(int argc, char *argv[]) { | |
12 | |
13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; | |
14 int retVal = UIApplicationMain(argc, argv, nil, nil); | |
15 [pool release]; | |
16 return retVal; | |
17 } |