Marshmallows/MarshmallowsTesting/main.m

17 lines
384 B
Objective-C

//
// main.m
// MarshmallowsTesting
//
// Created by Sami Samhuri on 11-09-04.
// Copyright 2011 Guru Logic. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"GHUnitIPhoneAppDelegate");
[pool release];
return retVal;
}