Update 08.1.md

This commit is contained in:
tilics
2019-05-20 19:56:19 +08:00
committed by GitHub
parent 89853f4f17
commit ec79d0d404

View File

@@ -151,7 +151,7 @@ func main() {
checkError(err)
// result, err := ioutil.ReadAll(conn)
result := make([]byte, 256)
_, err = conn.Read(result
_, err = conn.Read(result)
checkError(err)
fmt.Println(string(result))
os.Exit(0)