// Public class just helps it seem natural right now. We'll be going into just Normal Class later.
public class HelloWorld {
// Public static VOID main sends a string that connects each script.
// Pretend its a rope. Without the script the rope will lose durability. It'll all fall down so it wouldn't be usable.
public static void main (String[] args) {
//Declares a main class.
System.out.println("Hello World");
//displays text so you can read it. //Try compiling this. It worked for me. If it doesn't work for you (If you dont know how to //check Java version listen up) search up JAVA in your search thing and click it. It its Java 6/7 then this should work. It may just be a //complicated error like my thing that wont show the image.
}
}