generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
An archive of the first project language file for this directory set.
- Loading branch information
1 parent
931c24c
commit 09c65a9
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 x32/LiveCD_2.3A"); | ||
break; | ||
} | ||
|
||
// I chose C as the first project language file for this project (Android-x32/LiveCD_2.3A) 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-x32/LiveCD_2.3A) 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 31st at 10:49 pm PST) | ||
// File type: C programming language source file (*.c *.h) | ||
// Line count (including blank lines and compiler line): 28 | ||
|
||
// End of script |