For format!, println!, info!, debug!, and similar macros, either for normal display like {} or debug display like {:?}, use the following:
- ALWAYS use direct variable names when they match the placeholder name:
let name = "John"; println!("Hello {name}"); // GOOD - Direct use of variable name in placeholder



