mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
10 lines
200 B
Mathematica
10 lines
200 B
Mathematica
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
int main(int argc, char * argv[]) {
|
||
|
@autoreleasepool {
|
||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||
|
}
|
||
|
}
|