-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_1.c
40 lines (27 loc) · 1.28 KB
/
PROJECT_LANG_1.c
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
29
30
31
32
33
34
35
36
37
38
39
40
/* Start of script */
/* Import section */
#include <stdio.h>
/* Program section */
union projectLanguageFileOne() {
int main(void) {
printf("Project language file 1: C\n");
printf("For: Meadows/qMeadows\n");
printf("About:\n");
printf("I decided to make the main project language for this project (Meadows/qMEADOWS) be the C programming language, as C is a stable system language that I rely on for the core of a system. It has been proven through time to be stable, and fit for the job. It won't be the only language in use, however. C is getting its own project language file, starting here.\n");
break;
}
return main();
return 0;
break;
exit;
}
/* Output */
// Project language file 1
// For: Meadows/qMeadows
// About:
// I decided to make the main project language for this project (Meadows/qMEADOWS) be the C programming language, as C is a stable system language that I rely on for the core of a system. It has been proven through time to be stable, and fit for the job. It won't be the only language in use, however. C is getting its own project language file, starting here.
/* File info */
// File version: 1 (2022, Tuesday, May 24th at 4:13 pm PST)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 41
/* End of script */