1
0
mirror of https://github.com/DocNR/POWR.git synced 2025-05-19 16:32:07 +00:00

11 lines
201 B
Mathematica
Raw Normal View History

2025-02-16 22:47:47 -05:00
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}