blob: 1f68e1eb86892cbe4424ea7e89418d5bf3933ea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// AppDelegate.m
// test3
//
// Created by ruki on 2020/4/4.
// Copyright © 2020 tboox. All rights reserved.
//
#import "AppDelegate.h"
#import <test/test.h>
@interface AppDelegate ()
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
add(1, 2);
}
- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
}
@end
|