mirror of
https://github.com/python/cpython.git
synced 2025-08-09 11:29:45 +00:00
19 lines
263 B
Objective-C
19 lines
263 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// iOSTestbed
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
return YES;
|
|
}
|
|
|
|
@end
|