mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
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.
17 lines
262 B
Objective-C
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;
|
|
}
|