mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
20 lines
263 B
Objective-C
20 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
|