generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_1.h
28 lines (22 loc) · 1.12 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
28
// Start of script
union projectLanguageFileOne {
# include <stdio.h>
int main(void)
{
printf("Project language file 1\n");
printf("For: Bliss Browser OSMode\n");
printf("About:\n");
break;
}
// I chose C as the first project language file for this project (Bliss_Browser_OSMode) as the main configuration for OSMode is planned to be written in C. The shell will be placed on top of this, C is used to connect different variants of the shell to the operating system. 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 (Bliss_Browser_OSMode) as the main configuration for OSMode is planned to be written in C. The shell will be placed on top of this, C is used to connect different variants of the shell to the operating system. It is getting its own project language file, starting here.\n");
wait 30;
break;
exit;
}
// File info
// File version: 1 (2023, Tuesday, January 17th at 6:56 pm PST)
// File type: C programming language source file (*.c *.h)
// Line count (including blank lines and compiler line): 29
// End of script