Skip to content

Commit dc36cd1

Browse files
authored
PROJECT_LANG_1_V1.h
PROJECT_LANG_1_V1.h
1 parent 9cfc59e commit dc36cd1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
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 x32/Android 2.1/Heavy_Edition");
9+
break;
10+
}
11+
12+
// I chose C as the first project language file for this project (Android-x32/Android-2.1/Heavy_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-x32/Android-2.1/Heavy_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 (2023, Saturday, January 14th at 8:45 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)