boilerplate code to research string removal
This commit is contained in:
6
research/strings_empty/tests/c_code.c
Normal file
6
research/strings_empty/tests/c_code.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello, World!\n");
|
||||
return 0;
|
||||
}
|
8
research/strings_empty/tests/objc_code.m
Normal file
8
research/strings_empty/tests/objc_code.m
Normal file
@ -0,0 +1,8 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
int main() {
|
||||
@autoreleasepool {
|
||||
NSLog(@"Hello, World!");
|
||||
}
|
||||
return 0;
|
||||
}
|
1
research/strings_empty/tests/swift_code.swift
Normal file
1
research/strings_empty/tests/swift_code.swift
Normal file
@ -0,0 +1 @@
|
||||
print("Hello, World!")
|
Reference in New Issue
Block a user