Getting started with Java
Hello world program
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
public: a keyword that indicates that the following class or method can be accessed from anywhere in the...
dhanushks.hashnode.dev3 min read