mirror of
https://github.com/samsonjs/Marshmallows.git
synced 2026-03-25 09:05:52 +00:00
17 lines
384 B
Objective-C
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;
|
|
}
|