generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_1.h
27 lines (21 loc) · 1.07 KB
/
PROJECT_LANG_1.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Start of script
union projectLanguageFileOne {
# include <stdio.h>
int main(void)
{
printf("Project language file 1");
printf("For: Android x128");
break;
}
// I chose C as the first project language file for this project (Android-x128) as the core of the system needs to be written in C for functionality. I currently don't know what other languages will supplement C. Time will tell, 128 bit Android is not yet a reality. C 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-x128) as the core of the system needs to be written in C for functionality. I currently don't know what other languages will supplement C. Time will tell, 128 bit Android is not yet a reality. C is getting its own project language file, starting here.");
wait 30;
break;
exit;
}
// File info
// File version: 1 (2022, Tuesday, November 22nd at 11:23 pm PST)
// File type: C programming language source file (*.c *.h)
// Line count (including blank lines and compiler line): 28
// End of script