summaryrefslogtreecommitdiff
path: root/csm.cpp
diff options
context:
space:
mode:
authorjStmaX! <87650746+jstmaxlol@users.noreply.github.com>2025-08-28 13:16:00 +0200
committerGitHub <noreply@github.com>2025-08-28 13:16:00 +0200
commitd14b57f6a16b58608649d80ca4b943ec0eadfd6d (patch)
treeabb928aa487932fd4e032d2be04e966e437d0065 /csm.cpp
parentddb2084a68afbf611ba3aab5986a0d18e2210978 (diff)
unused and kinda UHHHHH rough
Diffstat (limited to 'csm.cpp')
-rw-r--r--csm.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/csm.cpp b/csm.cpp
deleted file mode 100644
index 15dd8ad..0000000
--- a/csm.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <iostream>
-#include <chrono>
-#include <thread>
-#include <cstdlib>
-// CoSMo_C++
-void cl(); void printCosmos();
-int main() {
- cl();
- while (true) {
- std::this_thread::sleep_for(std::chrono::milliseconds(70));
- printCosmos();
- } return 0;
-}
-
-void printCosmos() {
- for(int i=0;i<11;i++)
- std::cout << "*"
- << " "
- << " "
- << " "
- << " ";
-}
-#ifdef __WIN32
-void cl() {system("cls");}
-#endif
-#ifdef __unix
-void cl() {system("clear");}
-#endif