mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
17 lines
348 B
Objective-C
17 lines
348 B
Objective-C
//
|
|
// main.m
|
|
// Ample
|
|
//
|
|
// 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);
|
|
}
|