mirror of
https://github.com/python/cpython.git
synced 2025-10-28 04:04:44 +00:00
20 lines
263 B
Mathematica
20 lines
263 B
Mathematica
|
|
//
|
||
|
|
// AppDelegate.m
|
||
|
|
// iOSTestbed
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "AppDelegate.h"
|
||
|
|
|
||
|
|
@interface AppDelegate ()
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@implementation AppDelegate
|
||
|
|
|
||
|
|
|
||
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||
|
|
return YES;
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|