14 lines
254 B
Mathematica
14 lines
254 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// Test Application
|
||
|
//
|
||
|
// Created by Patrick Wardle on 9/10/16.
|
||
|
// Copyright (c) 2016 Objective-See. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, const char * argv[]) {
|
||
|
return NSApplicationMain(argc, argv);
|
||
|
}
|