Skip to content

Commit 81c39c9

Browse files
authored
PROJECT_LANG_1.h [V1]
Version 1 of the first project language file for this project.
1 parent e635602 commit 81c39c9

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 x64/LiveCD_9A");
9+
break;
10+
}
11+
12+
// I chose C as the first project language file for this project (Android-x64/LiveCD_9A) 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/LiveCD_9A) 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, December 18th at 9:49 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)