mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-12 04:05:10 -05:00
19 lines
342 B
Mathematica
19 lines
342 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// Mailiverse
|
||
|
//
|
||
|
// Created by Timothy Prepscius on 1/23/13.
|
||
|
// Copyright (c) 2013 __MyCompanyName__. 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]));
|
||
|
}
|
||
|
}
|