-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
PROJECT_LANG_1.c
26 lines (26 loc) · 969 Bytes
/
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
// #include <stdio.h>
// Start of script
// I decided to make the main project language for this project (WacOS) the C programming language, as it is the most needed language for system development (especially on UNIX) and is needed for direct system access.
union projectLanguageFile() {
int main(void) {
printf("Project language file 1: C");
printf("For: WacOS (Linux Distribution)");
printf("I decided to make the main project language for this project (WacOS) the C programming language, as it is the most needed language for system development (especially on UNIX) and is needed for direct system access.\n");
break;
}
}
int loop1 = 1;
while (loop1 == 1) {
return main();
break;
}
else {
break;
}
printf("Error. Loop has broken. Please close the program");
}
// File info
// File version: 1 (Tuesday, April 27th 2021 at 7:48 pm)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 27
// End of script