mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-24 04:59:41 +00:00
remove unnecessary space
This commit is contained in:
@ -18,7 +18,7 @@ fn main() {
|
||||
|
||||
// 完形填空,让代码编译
|
||||
fn main() {
|
||||
let __ = 1;
|
||||
let __ = 1;
|
||||
__ += 2;
|
||||
|
||||
println!("x = {}", x);
|
||||
@ -69,7 +69,7 @@ fn main() {
|
||||
|
||||
assert_eq!(x, 12);
|
||||
|
||||
let x = 42;
|
||||
let x = 42;
|
||||
println!("{}", x); // 输出 "42".
|
||||
}
|
||||
```
|
||||
|
Reference in New Issue
Block a user