(no title)
kerneloops | 2 years ago
C printf: MT-Safe locale.
C++ std::cout: safe, unless you call sync_with_stdio(false).
JVM System.out.println: safe in common JVMs.
C# Console.WriteLine: safe.
Go fmt.Printf: safe.
Rust println!: safe.
Ruby puts: safe.
So it seems that Python is the outlier here.
vitaut|2 years ago
See https://vitaut.net/posts/2023/print-in-cpp23/.