diff options
Diffstat (limited to 'Word Count/main.m')
-rw-r--r-- | Word Count/main.m | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Word Count/main.m b/Word Count/main.m new file mode 100644 index 0000000..fa20316 --- /dev/null +++ b/Word Count/main.m @@ -0,0 +1,15 @@ +// +// main.m +// Word Count +// +// Created by tw on 10/8/18. +// Copyright © 2018 tw. All rights reserved. +// + +#import <Cocoa/Cocoa.h> +#import <AppleScriptObjC/AppleScriptObjC.h> + +int main(int argc, const char * argv[]) { + [[NSBundle mainBundle] loadAppleScriptObjectiveCScripts]; + return NSApplicationMain(argc, argv); +} |