Hi:

Thanks for assistance, much appreciated!!!!!!!!!!!!

Made alterations to Environment Variables and all issues resolved. However I have stumbled upon another!

Tried attempting to input the following code:

Code:
public class HelloWorld
{
public static void main(String[] args)
{
System.out.print1n("Hello World");
}
}
When I compile using:

javac HelloWorld.java

I have the following error related message:

Code:
HelloWorld.java:5: Cannot resolve symbol
symbol : method print1n (java.lang.String)
location: class java.io. PrintStream
		System.out.print1n("Hello World");
			  ^

This is my first program, hence "Hello World", therefore any help very much appreciated!

Thanks