apps-gorm/Tools/gormtool/AppDelegate.m

18 lines
313 B
Mathematica
Raw Normal View History

2023-06-05 08:36:11 +00:00
#import <Foundation/NSNotification.h>
#import <Foundation/NSProcessInfo.h>
#import "AppDelegate.h"
@implementation AppDelegate
2023-06-05 08:36:11 +00:00
- (void) applicationDidFinishLaunching: (NSNotification *)n
{
NSLog(@"== gormtool");
NSLog(@"processInfo: %@", [NSProcessInfo processInfo]);
[NSApp terminate: nil];
2023-06-05 08:36:11 +00:00
}
@end