archive of my solution codes to JAVA lab problems
- For Windows users: firstly install
makefor executingmakefile, from this link; - For Linux users:
makegenerally comes pre-installed;- if not, then run the following command:
sudo apt-get install make
- if not, then run the following command:
- Now, run the following commands in the root directory:
- for building class files:
cd ./src make compile- for executing them:
cd ./build make run
Happy Java!