Update 20180330 Go on very small hardware Part 1.md

This commit is contained in:
wenwensnow 2019-09-23 20:08:03 +08:00 committed by GitHub
parent 7f1b88e182
commit 01c802f102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -452,7 +452,6 @@ for {
注意在这个例子中我们不在意channel中收到的值我们只对其接受到的消息感兴趣。我们可以在声明时将channel元素类型中的 _int_ 用空结构体来代替,发送消息时, 用`struct{}{}` 结构体的值代替0但这部分对新手来说可能会有些陌生。
让我们来编译一下代码:
```