/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

  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. #import <UIKit/UIKit.h>
  9. #import "VowelDestroyerAppDelegate.h"
  10. int main(int argc, char *argv[])
  11. {
  12. @autoreleasepool {
  13. return UIApplicationMain(argc, argv, nil, NSStringFromClass([VowelDestroyerAppDelegate class]));
  14. }
  15. }