12 lines
185 B
Mathematica
Raw Normal View History

2021-11-11 21:22:24 +01:00
#import "AppDelegate.h"
@implementation AppDelegate
#if TARGET_OS_OSX
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return YES;
}
#endif
@end