Skip to content

Commit 8c26d96

Browse files
authored
PROJECT_LANG_1.h
PROJECT_LANG_1.h
1 parent e7f4cf8 commit 8c26d96

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

PROJECT_LANG_1.h

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 1.6/LiveCD_Edition");
9+
break;
10+
}
11+
12+
// I chose C as the first project language file for this project (Android-x32/Android-1.6/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-x32/Android-1.6/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 (2023, Monday, January 16th at 10:14 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)