Files
codeql/swift/ql/integration-tests/autobuilder/no-swift/hello-objective/main.m
Cornelius Riemenschneider a92a845719 Swift: Move all integration tests.
We are no longer bound to the platform-specific directories,
so simplify the test organization.
If you don't want this change, just skip merging this PR. It's purely optional.
2024-08-28 10:47:17 +02:00

17 lines
262 B
Objective-C

//
// main.m
// hello-objective
//
// Created by ec2-user on 5/9/23.
//
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}