summaryrefslogtreecommitdiff
path: root/tests/projects/objc/macapp_with_framework/src/app/main.m
blob: ae3706f51a7621afff6d79b37e90c0c603195711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  main.m
//  test3
//
//  Created by ruki on 2020/4/4.
//  Copyright © 2020 tboox. All rights reserved.
//

#import <Cocoa/Cocoa.h>

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // Setup code that might create autoreleased objects goes here.
    }
    return NSApplicationMain(argc, argv);
}