On branch le-dev

Changes to be committed:
	modified:   zh-CN/src/variables.md
This commit is contained in:
root@unix.cn.com 2022-04-19 16:44:18 +08:00
parent ecf71d7d84
commit 07dda493cf
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
fn main() {
let x: i32; // 未初始化,但被使用
let y: i32; // 未初始化,也未被使用
println!("{} is equal to 5", x);
println!("x is equal to {}", x);
}
```
@ -21,7 +21,7 @@ fn main() {
let __ = 1;
__ += 2;
println!("{} = 3", x);
println!("x = {}", x);
}
```