//
//  main.m
//  Free Name
//
//  Created by Willem Laurentz Middelkoop on 13-03-11.
//  Copyright 2011 WMIT. All rights reserved.
//

#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {
    
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, nil);
    [pool release];
    return retVal;
}
