15 lines
258 B
Mathematica
15 lines
258 B
Mathematica
|
|
//
|
||
|
|
// main.m
|
||
|
|
// Launcher
|
||
|
|
//
|
||
|
|
// Created by Austin Jennings on 07/03/27.
|
||
|
|
// Copyright __MyCompanyName__ 2007. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
int main(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
|
}
|