16 lines
291 B
Objective-C
16 lines
291 B
Objective-C
//
|
|
// main.m
|
|
// macOS (App)
|
|
//
|
|
// Created by Stephen Carter on 4/22/26.
|
|
//
|
|
|
|
#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);
|
|
}
|