1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-26 18:58:21 +02:00

11 lines
199 B
Mathematica
Raw Normal View History

2017-05-06 15:37:28 +01:00
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
2022-12-27 19:37:15 +00:00
int main(int argc, char *argv[])
{
2017-05-06 15:37:28 +01:00
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}