mirror of https://github.com/python/cpython
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
|