Hello World Program
Java Code :
public class Main{
public static void main(String[] args){
System.out.println("Hello world");
}
}
public class {.....} Every Java Application must start with the class definition.
So the entry point for the java applica...
smartcookie.hashnode.dev1 min read