问题描述:Rust的第一行代码如何实现
fn main() {
let x = 1;
let y = x *2;
println!("x和y的值分别是:{0},{1}", x, y);
}
println!("hello");