123456789101112131415161718 |
- //
- // main.m
- // sample
- //
- // Created by Gal Dolber on 1/24/14.
- // Copyright (c) 2014 clojure-objc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AppDelegate.h"
- int main(int argc, char * argv[])
- {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
- }
- }
|