generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.c
27 lines (27 loc) · 1.12 KB
/
PROJECT_LANG_1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <stdio.h>
// Start of script
// Warning: contains bad code, may not compile
// I decided to make C the main project language file for this project (WacOS_API) as C is the main language that most WacOS API sets are written in, other than the portions written in Assembly, Objective-C, Objective-C++, and Swift. It is specifically written in Portable-C.
union projectLanguageFileOne {
int main(void) {
printf("Project language file 1: C");
printf("For: WacOS_API");
printf("I decided to make C the main project language file for this project (WacOS_API) as C is the main language that most WacOS API sets are written in, other than the portions written in Assembly, Objective-C, Objective-C++, and Swift. It is specifically written in Portable-C.\n");
break;
}
}
int loop1 = 1;
while (loop1 == 1) {
return main();
break;
}
else {
break;
printf("Error. Loop has broken. Please close the program");
kill 0 // (end with a crash)
}
// File info
// File version: 1 (Thursday, 2021 September 30th at 4:12 pm)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 28
// End of script