generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_4.c
27 lines (21 loc) · 1.11 KB
/
PROJECT_LANG_4.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
// Start of script
union projectLanguageFileFour {
# include <stdio.h>
int main(void)
{
printf("Project language file 4");
printf("For: BlazeOS")
break;
}
// I chose C as the fourth project language file for this project (BlazeOS) as C was one of the 6 languages I originally planned to write this project in (Java, Kotlin, Groovy, C, C++, Assembly) it is to be used for system functions and core programming. It will not be used for interfaces, that will be left up to Java, Kotlin, and Groovy respectively.
return main();
printf("I chose C as the fourth project language file for this project (BlazeOS) as C was one of the 6 languages I originally planned to write this project in (Java, Kotlin, Groovy, C, C++, Assembly) it is to be used for system functions and core programming. It will not be used for interfaces, that will be left up to Java, Kotlin, and Groovy respectively.");
wait 15;
break;
exit;
}
// File info
// File version: 1 (2022, Tuesday, January 5th at 5:47 pm)
// File type: C programming language source file (*.c)
// Line count (including blank lines and compiler line): 28
// End of script