//declare class
public class main{
//declare static and the return type, followed by paraameters
public static void main(String [] args)
//remember, System.out.println("");
System.out.println("Hello World!");
//or if you dont want the next line of text to be on the
//next line remove the ln after System.out.print as so
System.out.print("Hello World!");
}
//Happy coding! :)
}