This commit is contained in:
2026-04-03 12:34:06 +02:00
parent cd77088dbf
commit 85dbded287
25 changed files with 2711 additions and 165 deletions

9
switch.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
if [ -e "mathTest.cpp" ]; then
mv main.cpp oldMain.cpp
mv mathTest.cpp main.cpp
else
mv main.cpp mathTest.cpp
mv oldMain.cpp main.cpp
fi