logoalt Hacker News

newsofthedaytoday at 7:10 PM0 repliesview on HN

You can do this in Java 21, create this small Java file and run it immediately:

    class HelloWorld {
        public static void main(String[] args) {
            System.out.println("Hello, World!"); 
        }
    }
    
    java HelloWorld.java
Include the .java extension, you're running the file directly.

time java HelloWorld.java

    Hello, World!

    real    0m0.278s
    user    0m0.613s
    sys     0m0.066s