boilerplate code to research string removal

This commit is contained in:
2024-08-22 17:40:39 +07:00
parent 9b85e4938f
commit 925429c4a9
6 changed files with 2082 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}

View File

@ -0,0 +1,8 @@
#import <Foundation/Foundation.h>
int main() {
@autoreleasepool {
NSLog(@"Hello, World!");
}
return 0;
}

View File

@ -0,0 +1 @@
print("Hello, World!")