Files
2025-11-07 21:55:39 +01:00

15 lines
252 B
Bash
Executable File

#!/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