generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_1.h
27 lines (21 loc) · 1.25 KB
/
PROJECT_LANG_1.h
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 projectLanguageFileOne {
# include <stdio.h>
int main(void)
{
printf("Project language file 1");
printf("For: Android x64/Android 9/LiveCD_Edition");
break;
}
// I chose C as the first project language file for this project (Android-x64/Android-9/LiveCD_Edition) as the core of the system needs to be written in C for functionality. It will be supplemented with Assembly language, Java, and other languages. It is in use for core system functions and programming. It is not to be used for user interfaces. It is getting its own project language file, starting here.
return main();
printf("I chose C as the first project language file for this project (Android-x64/Android-9/LiveCD_Edition) as the core of the system needs to be written in C for functionality. It will be supplemented with Assembly language, Java, and other languages. It is in use for core system functions and programming. It is not to be used for user interfaces. It is getting its own project language file, starting here.");
wait 30;
break;
exit;
}
// File info
// File version: 1 (2022, Sunday, December 4th at 11:41 pm PST)
// File type: C programming language source file (*.c *.h)
// Line count (including blank lines and compiler line): 28
// End of script