const text = \\This is a long comment \\But I can split it among lines arbitrarily \\And keep my indentation. ;
const TEXT: &'static str = docstr!( /// Now I can do it in Rust, too. /// I prefer this style a lot of the time /// for long texts. );
let greeting: String = docstr!(format! /// Hello, my name is {name}. /// I am {} years old! age );
printf ("Things:\n" " thing1=%u\n" " thing2=%u\n" " thing3=%u\n", thing1, thing2, thing3);