Java Programming Part2(Text and Running)
by Coder0806 in Circuits > Software
522 Views, 6 Favorites, 0 Comments
Java Programming Part2(Text and Running)
In your java.java you should have the code -
public class java {
public static void main(String args[]){
}
}
So if we are going to make java programs we need text and the code for a simple line of text is -
System.out.println("Hello Java programming");
In the console it will display the words 'Hello Java programming' so if you combine the println with the public void you get this -
public class java {
public static void main(String args[]){
System.out.println("Hello Java programming");
}
}
Awesome, but now to run the code just click the little green triangle in the top and it will say 'Hello Java programming' if this worked you have just created your first java program. THAT IS AWSOME I hope that you will continue to learn java so you can be on your way to create great games like Minecraft (and yes minecraft was made with java).