java
public class Hello_World // Creating a class 
{
public static void main(String args[]) // executing main method
{
System.out.println("Hello World. Welcome to Java");/*system.out.println brings the print system. The words inside braces will be printed*/
}// These brackets are compulsory to put so that the main method is enclosed
}// These brackets are compulsory to put so that the class is enclosed