mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-23 03:48:31 +00:00
17 lines
341 B
Mathematica
17 lines
341 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// AssistantPlusApp
|
||
|
//
|
||
|
// Created by Zaid Elkurdi on 3/27/15.
|
||
|
// Copyright (c) 2015 Zaid Elkurdi. 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]));
|
||
|
}
|
||
|
}
|