/VowelDestroyer/VowelDestroyer/main.m
http://github.com/rzuniga64/objectiveC · Objective C · 18 lines · 8 code · 3 blank · 7 comment · 0 complexity · aaff94de77bf6f7051066551d0892173 MD5 · raw file
- //
- // main.m
- // VowelDestroyer
- //
- // Created by Raul Zuniga on 4/17/12.
- // Copyright (c) 2012 Accenture. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "VowelDestroyerAppDelegate.h"
- int main(int argc, char *argv[])
- {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([VowelDestroyerAppDelegate class]));
- }
- }