17 lines
340 B
Mathematica
17 lines
340 B
Mathematica
![]() |
//
|
||
|
// main.m
|
||
|
// YogaKitOSXSample
|
||
|
//
|
||
|
// Created by lvv on 2020/8/13.
|
||
|
// Copyright © 2020 facebook. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, const char * argv[]) {
|
||
|
@autoreleasepool {
|
||
|
// Setup code that might create autoreleased objects goes here.
|
||
|
}
|
||
|
return NSApplicationMain(argc, argv);
|
||
|
}
|