mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-12 02:18:08 +08:00
5 lines
66 B
Rust
5 lines
66 B
Rust
|
fn main() {
|
||
|
let b = Box::new(5);
|
||
|
println!("b = {}", b);
|
||
|
}
|