Skip to content

Commit c15a331

Browse files
authored
PROJECT_LANG_1.c [V1]
Version 1 of the first project language file for this project.
1 parent c45e3d9 commit c15a331

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

PROJECT_LANG_1.c

+27
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");
9+
break;
10+
}
11+
12+
// I chose C as the first project language file for this project (Android-x32) 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(" chose C as the first project language file for this project (Android-x32) 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, Tuesday, November 22nd at 11:03 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)