Files
javademos/jep512/src/Classic.java
T
Claude e0cb6e83e2 Add jep512 module: compact source files and instance main methods on JDK 25 and 27
Runnable sources, broken examples and captured transcripts for the ankurm.com JEP 512 article,
including the measured launch order and a private-constructor difference between 25 and 27.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01TF9JWFvJSNm6HVzswzZU5a
2026-09-24 10:32:47 +00:00

7 lines
222 B
Java

// The same program the way every tutorial before Java 25 wrote it, for the side-by-side in the post.
public class Classic {
public static void main(String[] args) {
System.out.println("Hello, world");
}
}