|
|
|
|
|
by newsoftheday
163 days ago
|
|
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
|
|
I often combine these approaches with https://get-coursier.io/ when I need to fetch third-party dependencies.