modified: eBook/18.1.md

This commit is contained in:
leo
2016-03-21 21:51:07 +08:00
parent 623ecedb11
commit 48f3d2a9e3

View File

@@ -4,7 +4,7 @@
```go
str:="hello"
c:=[]byte(s)
c:=[]byte(str)
c[0]='c'
s2:= string(c) // s2 == "cello"
```