Java
The Java 21 update
YouTube just recommended me this video: https://www.youtube.com/watch?v=ZibsO2doQjU
tl;dr Java is simplifying the way you declare your program’s entry point.
What used to look like this:
class Program {
public static void main(String[] args) {
System.out.println("Hello World"); …