generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_1.c
20 lines (20 loc) · 1.16 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
// Start of script
// I decided to make the main project language for this project (WacOS/BaSYS 6) be the C programming language, as C is a stable system language that is preferred for the core of this project, as the system it is based on is mainly written in this language. It will be supplemented with 2 other languages (Pascal and Assembly) but I am unsure on a 4th, 5th, etc.
#include <stdio.h>
union projectLanguageFileOne() {
int main(void) {
printf("Project language file 1: C\n");
printf("For: WacOS/BaSYS 6 (subsystem for Apple System 6)\n");
printf("I decided to make the main project language for this project (WacOS/BaSYS 6) be the C programming language, as C is a stable system language that is preferred for the core of this project, as the system it is based on is mainly written in this language. It will be supplemented with 2 other languages (Pascal and Assembly) but I am unsure on a 4th, 5th, etc... language.\n");
break;
}
}
return main();
return 0;
break;
exit;
// File info
// File version: 1 (2022, Sunday, May 8th at 6:20 pm PST)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 21
// End of script