This is a copy of the code for the HelloWordApp I am trying to compile
/**
* The HelloWorldApp class implements an application that
* simply prints "Hello World!" to standard output.
*/
class HelloWorldApp {
public static void main(
String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}
When I compile using textpad it compiles and i can use the program. The file is saved in a folder called Java on C. At the
c:\Java prompt I type
javac HelloWorldApp.java and the error message returned is
'javac' is not recognized as an internal or external command, operable program or batch file
Thanks for being patient
