Simple task for testing a local #LLM: "Hello World in modern C++23". I'd expect:
```
#include <print>
int main() {
std::println("Hello World!");
return 0;
}
```
Each coding LLM I've tried presents the C++98 solution using `std::cout`.
If asked to use `std::println()`, they implement their own version using `std::cout`, or they include `iostream` instead of the needed `print`. If you try to correct these errors, the turn into aisplaining mode.
Still a long way to go.