istereo

view src/main.m @ 1:4d25539806d2

bollocks
author John Tsiombikas <nuclear@mutantstargoat.com>
date Tue, 06 Sep 2011 12:48:39 +0300
parents
children 2c5620f0670c
line source
1 //
2 // main.m
3 // istereo
4 //
5 // Created by nuclear on 9/6/11.
6 // Copyright __MyCompanyName__ 2011. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 int main(int argc, char *argv[]) {
13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14 int retVal = UIApplicationMain(argc, argv, nil, nil);
15 [pool release];
16 return retVal;
17 }