new Date().toLocaleString("de-DE")
"13.1.2022, 20:18:52"
let person = get_person();
// ...
println!("Hello, {person}!"); // captures the local `person
str_format(buf, size, fmtstr, args)
works with localization, because I can replace it with str_format(buf, size, localize(fmtstr), args)
println!("output: {}", abc)
might be replaced by locprintln!("output: {}", abc)
println!
should support localization