13 lines
276 B
Mathematica
13 lines
276 B
Mathematica
|
|
/*
|
||
|
|
* main.m
|
||
|
|
*
|
||
|
|
* Copyright (c) 2016-2017 The Brenwill Workshop Ltd.
|
||
|
|
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
|
||
|
|
*/
|
||
|
|
|
||
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
int main(int argc, const char * argv[]) {
|
||
|
|
return NSApplicationMain(argc, argv);
|
||
|
|
}
|