Hello, this is the very basic of Java programming and it should look like this.

public class HelloBiborn // creating class named HelloBiborn
{
public static void main(String[] args) // main method
{
System.out.println("Hello biborn!!"); // print out the text
}
}