Debugging print



examples/intro/debugging-print/src/main.rs
fn main() {
    let name = "Foo";
    dbg!(name);
}