summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-09-25 12:20:24 +1000
committerquou <quou@disroot.org>2023-09-25 12:20:24 +1000
commitc57ade88516ac2c050977ecfa7f613824b06f4e9 (patch)
tree1496f00d8a22055d1dfff628d16c0fd050987401
Added files via uploadHEADmaster
-rw-r--r--epic0.exebin0 -> 28552 bytes
-rw-r--r--epic1.exebin0 -> 28552 bytes
-rw-r--r--epic2.exebin0 -> 28552 bytes
-rw-r--r--epic3.exebin0 -> 28552 bytes
-rw-r--r--epic4.exebin0 -> 28552 bytes
-rw-r--r--main version 2.c4
-rw-r--r--main version 3.c4
-rw-r--r--main version 4.c5
-rw-r--r--main version 5.c5
-rw-r--r--main.c4
10 files changed, 22 insertions, 0 deletions
diff --git a/epic0.exe b/epic0.exe
new file mode 100644
index 0000000..900a4c8
--- /dev/null
+++ b/epic0.exe
Binary files differ
diff --git a/epic1.exe b/epic1.exe
new file mode 100644
index 0000000..77942bb
--- /dev/null
+++ b/epic1.exe
Binary files differ
diff --git a/epic2.exe b/epic2.exe
new file mode 100644
index 0000000..8347fdd
--- /dev/null
+++ b/epic2.exe
Binary files differ
diff --git a/epic3.exe b/epic3.exe
new file mode 100644
index 0000000..a1a68e3
--- /dev/null
+++ b/epic3.exe
Binary files differ
diff --git a/epic4.exe b/epic4.exe
new file mode 100644
index 0000000..5054254
--- /dev/null
+++ b/epic4.exe
Binary files differ
diff --git a/main version 2.c b/main version 2.c
new file mode 100644
index 0000000..f6df884
--- /dev/null
+++ b/main version 2.c
@@ -0,0 +1,4 @@
+int main() {
+ printf("version control is my pashon\n");
+ return 0;
+}
diff --git a/main version 3.c b/main version 3.c
new file mode 100644
index 0000000..2347604
--- /dev/null
+++ b/main version 3.c
@@ -0,0 +1,4 @@
+int main() {
+ printf("version control is my passion\n");
+ return 0;
+}
diff --git a/main version 4.c b/main version 4.c
new file mode 100644
index 0000000..c6082ce
--- /dev/null
+++ b/main version 4.c
@@ -0,0 +1,5 @@
+int main() {
+ const char* strnmg = "version control is my passion";
+ printf("%s\n", strnmg);
+ return 0;
+}
diff --git a/main version 5.c b/main version 5.c
new file mode 100644
index 0000000..83ac10b
--- /dev/null
+++ b/main version 5.c
@@ -0,0 +1,5 @@
+int main() {
+ const char* string = "version control is my passion";
+ printf("%s\n", string);
+ return 0;
+}
diff --git a/main.c b/main.c
new file mode 100644
index 0000000..8012a74
--- /dev/null
+++ b/main.c
@@ -0,0 +1,4 @@
+int main() {
+ printf("verzon control is my pashon\n");
+ return 0;
+}