あれ2022/3/2 20:20:00 fn hello(text:&str) { println!("Hello, {}!", &text); } let m = Box::new(String::from("Rust")); hello(&m); //Hello, Rust!