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