<!--{
"Title": "The Go Programming Language Specification",
- "Subtitle": "Version of May 8, 2013",
+ "Subtitle": "Version of May 14, 2013",
"Path": "/ref/spec"
}-->
</p>
<pre>
-func findMarker(c <-chan int) int {
+func findMarker(c <-chan int) int {
for i := range c {
- if x := <-c; isMarker(x) {
+ if x := <-c; isMarker(x) {
return x
}
}
</p>
<pre>
-const c = 3 < 4 // c is the untyped bool constant true
+const c = 3 < 4 // c is the untyped bool constant true
type MyBool bool
var x, y int
<p>
As with <a href="#Calls">method calls</a>, a reference to a non-interface method with a pointer receiver
-using an addressable value will automatically take the address of that value: <code>t.Mv</code> is equivalent to <code>(&t).Mv</code>.
+using an addressable value will automatically take the address of that value: <code>t.Mp</code> is equivalent to <code>(&t).Mp</code>.
</p>
<pre>