In this small post we will see that how the execution of java program has changed in JDK11. Now, we can just compile and run a program in one line command. >> cat HelloWorld.java public class HelloWorld { public static void main(String[] args) { System.out.println("Welcome to JDK11"); } } >>./java HelloWorld.java Welcome to JDK11 Under […]
Read More...