aboutsummaryrefslogtreecommitdiffstats
path: root/On Task.m
diff options
context:
space:
mode:
Diffstat (limited to 'On Task.m')
-rw-r--r--On Task.m11
1 files changed, 8 insertions, 3 deletions
diff --git a/On Task.m b/On Task.m
index 08675eb..412ce68 100644
--- a/On Task.m
+++ b/On Task.m
@@ -1,10 +1,15 @@
#import <Foundation/Foundation.h>
+#import "NSFileManager+DirectoryLocations.h"
+
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
-
- // insert code here...
- NSLog(@"Hello, World!");
+
+ NSString *supportPath = [[NSFileManager defaultManager] applicationSupportDirectory];
+
+ // Take screenshot
+ NSLog(@"%@", supportPath);
+
[pool release];
return 0;
}