indoc 2.0.7

Indented document literals
Documentation
1
2
3
4
5
6
use indoc::indoc;

fn main() {
    let world = "world";
    println!(indoc!("Hello {world}"));
}