Hello, this is the very basic of Java programming and it should look like this.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HelloBiborn // creating class named HelloBiborn | |
{ | |
public static void main(String[] args) // main method | |
{ | |
System.out.println("Hello biborn!!"); // print out the text | |
} | |
} |
TAGS :
COMMENTS