14 lines
253 B
Mathematica
14 lines
253 B
Mathematica
|
|
//
|
||
|
|
// main.m
|
||
|
|
// MessagesBridge
|
||
|
|
//
|
||
|
|
// Created by James Magahern on 11/12/18.
|
||
|
|
// Copyright © 2018 James Magahern. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
int main(int argc, const char * argv[]) {
|
||
|
|
return NSApplicationMain(argc, argv);
|
||
|
|
}
|