13 lines
254 B
Mathematica
13 lines
254 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// GeckoReporter
|
||
|
//
|
||
|
// Created by Mr. Gecko on 1/1/10.
|
||
|
// Copyright 2010 Mr. Gecko's Media. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
}
|