This repository has been archived on 2025-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
rust-demo/src/main.rs
2024-11-03 23:22:03 +08:00

7 lines
120 B
Rust

fn main() {
println!("Hello, world!");
let n = 15;
println!("n: {}", n);
println!("n:{0}, n:{0}", n);
}