Skip to content

Commit 66c0727

Browse files
authored
PROJECT_LANG_1_V1.h
An archive of the first version of the first project language file for this project.
1 parent f0793c0 commit 66c0727

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Start of script
2+
3+
union projectLanguageFileOne {
4+
# include <stdio.h>
5+
int main(void)
6+
{
7+
printf("Project language file 1");
8+
printf("For: Android x64/Android 13/LiveCD_Edition");
9+
break;
10+
}
11+
12+
// I chose C as the first project language file for this project (Android-x64/Android-13/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.
13+
14+
return main();
15+
printf("I chose C as the first project language file for this project (Android-x64/Android-13/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.");
16+
wait 30;
17+
break;
18+
exit;
19+
}
20+
21+
// File info
22+
23+
// File version: 1 (2022, Sunday, November 27th at 11:43 pm PST)
24+
// File type: C programming language source file (*.c *.h)
25+
// Line count (including blank lines and compiler line): 28
26+
27+
// End of script

0 commit comments

Comments
 (0)