Clone the repository, change directory into the repository, and check that a recent version of Python is installed.
git clone https://github.com/adelyte-chris/compsci201.git
cd compsci201Check that Java is properly installed.
java -version
which javacCompile and run the HelloWorld.java program.
javac HelloWorld.java && java HelloWorld # Prints "Hello, World!"