-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
new jdk featuresModifications of code related to new JDK featuresModifications of code related to new JDK features
Description
JDK 24
Currently at JDK 24 (preview), the class IO
allows printing and reading with less boilerplate code.
Before:
System.out.println("Lore ipsum"")
After:
import static java.io.IO.println;
//....
println("Lore ipsum");
When this feature becomes gold (currently in preview), it would be great to modify the prints at the repository to this new method.
More information
https://foojay.io/today/java-23-has-arrived-and-it-brings-a-truckload-of-changes/
Metadata
Metadata
Assignees
Labels
new jdk featuresModifications of code related to new JDK featuresModifications of code related to new JDK features