blob: e7cb62e6394627f125870a3043d19ce0a3ccac38 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001// Copyright (c) 2013 Google Inc. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#import <UIKit/UIKit.h>
6
7#import "MyAppDelegate.h"
8
9int main(int argc, char * argv[]) {
10 @autoreleasepool {
11 UIApplicationMain(argc, argv,
12 nil, NSStringFromClass([MyAppDelegate class]));
13 }
14 return 1;
15}