ACTIVITY 1.1

In this activity you will write a simple program, compile and run it.

1. 	Open Visual Studio Code by double-clicking its icon
	on the desktop, or by selecting it from the application
	menu.
	
2.	Your instructor will have given you the path to a folder
	containing the course exercises. It will be something like
	Documents\Course\1.1. From the main menu bar, select
	File | Open folder... then in the folder search dialog
	that appears, navigate to the folder your instructor
	gave you. Click 'Select folder' to open the folder.

3.	In the Explorer bar at the left of the screen, Click
	the 'src' folder, then click the 'App.java' file to
	open it.

4.	Make sure the App.java tab is selected at the top of the
	window, if you get a Java overview window hiding App.java.

5.	This is an empty Java source file. Using your course notes
	to help you, type in the little Java program from page 4
	of your course notes. Change it so that the message displayed
	says "Hello from <your name here>".

6.	Select File | Save all from the main menu to save your newly
	edited Java file.

7.	From the main menu, select Terminal | New terminal. This will
	launch a new terminal window near the bottom of the Visual
	Studio Code main window.

8.	Click in the terminal window to select it.

9.	Change to the source code directory by typing the following
	command in the terminal window:

		cd src

10.	Compile your App.java file to a binary executable file by
	typing the command:

		javac App.java

11.	Check that the output binary file was created by typing the
	command:

		dir

	You should see two files listed: App.java and App.class.

12.	Run your program by typing the command:

		java App

13.	Your output message from your program should appear.

IF YOU HAVE TIME ...

14.	Add an extra line at the top of your program file:

	import java.util.Date;

15.	Add an extra line beneath the line that prints out your
	"Hello..." message that prints out the current Date
	and time of day:

	System.out.println("The date and time are " + new Date());

YOU HAVE FINISHED!