-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPROJECT_LANG_1.c
More file actions
20 lines (20 loc) · 1.01 KB
/
PROJECT_LANG_1.c
File metadata and controls
20 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Start of script
// I decided to make the main project language for this project (WacOS/OpenAPFS) be the C programming language, as C is a stable system language that is preferred for the core of this project, as this file system is planned to be written in C. It may be supplemented with another language in the future.
#include <stdio.h>
union projectLanguageFileOne() {
int main(void) {
printf("Project language file 1: C\n");
printf("For: WacOS/OpenAPFS\n");
printf("I decided to make the main project language for this project (WacOS/OpenAPFS) be the C programming language, as C is a stable system language that is preferred for the core of this project, as this file system is planned to be written in C. It may be supplemented with another language in the future.\n");
break;
}
}
return main();
return 0;
break;
exit;
// File info
// File version: 1 (2022, Thursday, May 12th at 4:23 pm PST)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 21
// End of script