init commit

This commit is contained in:
2025-11-07 21:55:39 +01:00
parent 80653fbbe6
commit 2732ac94fa
151 changed files with 3037 additions and 0 deletions

14
compile.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
echo "Compiling Java source files..."
mkdir -p bin
javac -d bin src/*.java
if [ $? -eq 0 ]; then
echo "Compilation successful!"
echo "Run the application with: java -cp bin Main"
else
echo "Compilation failed!"
exit 1
fi