class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } } java HelloWorld.java
time java HelloWorld.java
Hello, World! real 0m0.278s user 0m0.613s sys 0m0.066s
#!/usr/bin/env java --source 25 void main() { IO.println("Hello, World!"); }
I often combine these approaches with https://get-coursier.io/ when I need to fetch third-party dependencies.
time java HelloWorld.java