ample/Ample/main.m

17 lines
348 B
Mathematica
Raw Permalink Normal View History

2020-08-16 16:53:17 +00:00
//
// main.m
2020-08-30 03:24:49 +00:00
// Ample
2020-08-16 16:53:17 +00:00
//
// Created by Kelvin Sherlock on 8/16/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import <Cocoa/Cocoa.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// Setup code that might create autoreleased objects goes here.
}
return NSApplicationMain(argc, argv);
}