This page may qualify for speedy deletion because: nothing to learn from here, only single hello world; Wikibooks has something of substance on Java; been so since Dece 2012 If you disagree or intend to fix it, and you have not contributed to it before, you may remove this notice. If you have contributed before and disagree, please explain why on the discussion page, after adding {{hangon}} to the top of the . This will alert curators and custodians to your intention, and may permit you the time to write your explanation. Before deleting check the discussion page, what links here, history (last edit), the page log, and Wikiversity:Deletions. |
This is going to be an article on Java Programing. Java is a very diverse programing language. There is a lot to learn.
First you have to get an IDE. The most popular one is Eclipse(available here). You could also get NetBeans(available here), but since Eclipse is more popular, we shall be using Eclipse. To be sure on the download page for Eclipse download the Eclipse IDE for Java Developers version. Also download the JDK from here.
class Watermelon{
public static void main(String[] args){
System.out.println("Hello, World!");
}
}
The output would be:
Hello, World!
This section explains the program line by line.