/VowelDestroyer/VowelDestroyer/main.m
Objective C | 18 lines | 8 code | 3 blank | 7 comment | 0 complexity | aaff94de77bf6f7051066551d0892173 MD5 | raw file
1// 2// main.m 3// VowelDestroyer 4// 5// Created by Raul Zuniga on 4/17/12. 6// Copyright (c) 2012 Accenture. All rights reserved. 7// 8 9#import <UIKit/UIKit.h> 10 11#import "VowelDestroyerAppDelegate.h" 12 13int main(int argc, char *argv[]) 14{ 15 @autoreleasepool { 16 return UIApplicationMain(argc, argv, nil, NSStringFromClass([VowelDestroyerAppDelegate class])); 17 } 18}