/* 

On August 26, we discussed the following...

To connect to cs.bridgewater.edu open a terminal application (GitBash on Windows, Terminal on MacOS) and at the command prompt enter the following, replacing "username" with your BC username.

	$ ssh username@cs.bridgewater

* Enter your password and press enter.

Once connected to cs.bridgewater.edu, navigate to your repository using the following cd command, replacing "username" with your BC username.

	$ cd github/username

Verify you are in your repository using the pwd command.

	$ pwd

You should see /home/username/github/username, where "username" is your BC username.

Once in your repository, use vi to create a file named Hello.java.

	$ vi Hello.java

Once in vi, enter insert mode (press i) and add the following code to the file.

class Hello {
	public static void main(String[] args) {
		System.out.println("Hello you");
	}
}

Save and exit vi by entering command mode (press esc key) and then enter :wq and press return.

Once out of vi, compile your program using the javac command.

	$ javac Hello.java

Once compiled, run the program using the java command.

	$ java Hello

*/
