mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-09 00:43:59 +08:00
Fix typo
change from "打印出出" to "打印出".
This commit is contained in:
parent
c221962581
commit
dc8ab02731
@ -84,7 +84,7 @@ fn main() {
|
||||
|
||||
正如之前打印出 vector 时所所看到的,程序的名称占据了 vector 的第一个值 `args[0]`,所以我们从索引 `1` 开始。`minigrep` 获取的第一个参数是需要搜索的字符串,所以将其将第一个参数的引用存放在变量 `query` 中。第二个参数将是文件名,所以将第二个参数的引用放入变量 `filename` 中。
|
||||
|
||||
我们将临时打印出出这些变量的值,再一次证明代码如我们期望的那样工作。让我们使用参数 `test` 和 `sample.txt` 再次运行这个程序:
|
||||
我们将临时打印出这些变量的值,再一次证明代码如我们期望的那样工作。让我们使用参数 `test` 和 `sample.txt` 再次运行这个程序:
|
||||
|
||||
```text
|
||||
$ cargo run test sample.txt
|
||||
|
Loading…
Reference in New Issue
Block a user