aboutsummaryrefslogtreecommitdiffstats
path: root/Word Count/main.m
diff options
context:
space:
mode:
authorTeddy Wing2018-10-08 16:35:05 +0200
committerTeddy Wing2018-10-08 16:35:30 +0200
commit8412194269fe6632fe9ec4766392d270d47f40e1 (patch)
treef48eec0d203786f78885db66775b68b4f5540590 /Word Count/main.m
downloadWord-Count-8412194269fe6632fe9ec4766392d270d47f40e1.tar.bz2
New AppleScript App initialised from Xcode Version 9.2 (9C40b)
Diffstat (limited to 'Word Count/main.m')
-rw-r--r--Word Count/main.m15
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);
+}