We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7e1408 commit de170b0Copy full SHA for de170b0
README.md
@@ -1,6 +1,7 @@
1
+
2
# :orange_book: 持续更新中...
3
-## 第0章 远程安装
4
+## 第0章 安装
5
6
```golang
7
$ go get github.com/Tinywan/golang-tutorial
docs/golang_tutorial_14.md
@@ -298,7 +298,7 @@ func main() {
298
299
上面的程序中,第 8 行我们试图改变字符串的第一个字符为 `a`。因为字符串是不可变的,因此这是非法的,将会报错:`main.go:8: cannot assign to s[0]`。
300
301
-为了改变一个字符串中的字符,我们需要先把字符串转换为 `rune` 切片,然后修改切片中的内容,最后将这个切片转换回字符串。
+**为了改变一个字符串中的字符,我们需要先把字符串转换为 `rune` 切片,然后修改切片中的内容,最后将这个切片转换回字符串**。
302
303
304
package main
images/logo001.gif
250 KB
0 commit comments