//
//  main.m
//  UtilityTest
//
//  Created by Robert Metcalfe on 8/01/14.
//  Copyright (c) 2014 Robert Metcalfe. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "AppDelegate.h"

int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}
