helloWOrld message java code example
Example 1: java hello world
class Simple{
public static void main(String args[]){
System.out.println("Hello Java");
}
}
Example 2: first line of java code
public class Main {
public static void main(String[] args) {
System.out.println("This will be printed");
}
}