Learning Java/Introduction to Java: Difference between revisions

Content deleted Content added
m →‎Configuring Variables: Removed unneeded words
Line 52:
Anytime you learn a computer programming language, it is tradition that the first program you write should be to make you computer say, "Hello World". This is a small feat, but is a good opportunity to make sure that you installed the JDK properly.
 
The Java compiler reads basic text files. Open up a text editor like Notepad (You shouldnDon't use a complex program like Word for this). Type this code, remembering that Java is case-sensitive:
<pre>public class HelloWorld {
public static void main (String[] args) {