Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 471 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 471 Bytes

Duke Computer Science 201 - Spring 2016

Getting Started

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 compsci201

Check that Java is properly installed.

java -version
which javac

Compile and run the HelloWorld.java program.

javac HelloWorld.java && java HelloWorld # Prints "Hello, World!"