> auto main() -> int {
Dude…
As someone who quit c++ over 15 years ago it's been comical to watch what this language has become.
i was sincerely hoping i could get
auto main(argc, argv) -> int
int argc;
char **argv;
to work, but alas it seems c++ threw pre-ansi argument type declarations out.It's like calling a Ford Mustang Mach-E the "Model T++."
In my opinion this syntax is super good, it allows to have all functions/method names starting at the same level, it’s way easier to read the code that way, huge readability improvement imo. Sadly nobody uses this and you still have the classic way so multiple ways to do the same thing…