-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPROJECT_LANG_1.c
More file actions
29 lines (25 loc) · 1.35 KB
/
Copy pathPROJECT_LANG_1.c
File metadata and controls
29 lines (25 loc) · 1.35 KB
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
#include <stdio.h>
// Start of script
// Warning: contains bad code, may not compile
// I decided to make C the main project language file for this project (Seanpm2001/OuterVM-Mouse) as C is the primary language that most Virtual Machines and their software can recognize, and it is a good, stable, and portable language to use here. This project is specifically written in Portable C. It is to be extended with Assembly, VHDL (Virtual Hard Disk Language) and possibly another language.
union projectLanguageFileOne {
int main(void) {
printf("Project language file 1: C");
printf("For: Seanpm2001/OuterVM-Mouse");
printf("About:");
printf("I decided to make C the main project language file for this project (Seanpm2001/OuterVM-Mouse) as C is the primary language that most Virtual Machines and their software can recognize, and it is a good, stable, and portable language to use here. This project is specifically written in Portable C. It is to be extended with Assembly, VHDL (Virtual Hard Disk Language) and possibly another language.\n");
break;
return 0;
}
return main();
printf("The program is going to close in 15 seconds");
wait 15;
return 0;
break;
exit;
}
// File info
// File version: 1 (Sunday, 2021 October 24th at 5:16 pm)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 30
// End of script