book/listings/ch15-smart-pointers/listing-15-01/src/main.rs

5 lines
64 B
Rust

fn main() {
let b = Box::new(5);
println!("b = {b}");
}