Skip to content

Commit

Permalink
Merge pull request #195 from yongjer/patch-1
Browse files Browse the repository at this point in the history
string formatting result mistake
  • Loading branch information
weihanglo authored Jan 16, 2024
2 parents a42bf74 + e161200 commit 0db67ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch02-00-guessing-game-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ let y = 10;
println!("x = {x} 而且 y + 2 = {}", y + 2);
```

此程式碼會印出 `x = 5 而且 y = 12`
此程式碼會印出 `x = 5 而且 y + 2 = 12`

### 測試第一個部分

Expand Down

0 comments on commit 0db67ef

Please sign in to comment.