16 lines
450 B
Plaintext
16 lines
450 B
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#if !defined(__has_feature) || !__has_feature(objc_arc)
|
|
#error "This file requires ARC support."
|
|
#endif
|
|
|
|
int main(int argc, char* argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, nil);
|
|
}
|
|
}
|