mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-31 17:11:17 +00:00
14 lines
231 B
Objective-C
14 lines
231 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
#import "backend.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
NimMain();
|
|
return UIApplicationMain(argc, argv, nil,
|
|
NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|