Files
yoga/YogaKit/YogaKitSample/YogaKitSample/main.m
Emil Sjolander 73662ebf83 example license
2016-12-07 17:41:50 +00:00

17 lines
416 B
Objective-C

/**
* Copyright 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the
* LICENSE-examples file in the root directory of this source tree.
*/
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}