Skip to content

Commit

Permalink
PROJECT_LANG_1.c [V1]
Browse files Browse the repository at this point in the history
Version 1 of the first project language file for this project.
  • Loading branch information
seanpm2001 authored Dec 18, 2022
1 parent 4f940cd commit bcd0b22
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions PROJECT_LANG_1.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Start of script

union projectLanguageFileOne {
# include <stdio.h>
int main(void)
{
printf("Project language file 1");
printf("For: Android x64/LiveCD_13A");
break;
}

// I chose C as the first project language file for this project (Android-x64/LiveCD_13A) 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.

return main();
printf("I chose C as the first project language file for this project (Android-x64/LiveCD_13A) 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.");
wait 30;
break;
exit;
}

// File info

// File version: 1 (2022, Saturday, December 17th at 10:56 pm PST)
// File type: C programming language source file (*.c *.h)
// Line count (including blank lines and compiler line): 28

// End of script

0 comments on commit bcd0b22

Please sign in to comment.