Printing a string fixed



examples/intro/formatting-required-fixed/src/main.rs
fn main() {
    let name = "Foo";
    println!("{}", name);
}

Foo