generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_1.h
27 lines (21 loc) · 948 Bytes
/
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: BlazeOS/IgniteBook/")
break;
}
// I decided to make C the 1st project language file for this project (BlazeOS/IgniteBook/) as this software library for BlazeOS is written mostly in C, and is the first language used on the sub-project. It is being represented here in its own repository.
return main();
printf("I decided to make C the 1st project language file for this project (BlazeOS/IgniteBook) as this software library for BlazeOS is written mostly in C, and is the first language used on the sub-project. It is being represented here in its own repository.\n");
wait 15;
break;
exit;
}
// File info
// File version: 1 (2022, Monday, January 10th at 3:38 pm)
// File type: C programming language source file (*.c)
// Line count (including blank lines and compiler line): 28
// End of script