-
Context: https://tour.golang.org/methods/25
It is not obvious that the intent is to recreate the implementation while using existing imports.
meaning, I (and come colleagues going through this tog…
-
https://go-tour-jp.appspot.com/moretypes/21
-
Develop unit tests to test the new 2 verb PUT and the existing DELETE Tours operations.
-
I'm not in love with it but though I would document the idea.
![image](https://cloud.githubusercontent.com/assets/9751044/12187439/9ab35c38-b571-11e5-987a-53cbd93dccb8.png)
It shortens up the list qu…
-
Context: https://tour.golang.org/moretypes/5
The struct literal syntax isn't actually explained in the tutorial text. The "Vertex{1, 2}" kind of comes out of nowhere. Some text like this would be h…
-
I have selected Ukrainian language, and when I try to Run the code. I see only "Program exited." without any results
-
Context: https://tour.golang.org/methods/19
According to the struct members, defining a TimedEvent struct (for instance) instead of MyError struct may help to understand the example.
-
Context: http://127.0.0.1:3999/welcome/1
Change the title above to describe your issue and add your feedback here, including code if necessary
-
Context: http://127.0.0.1:3999/methods/22
It sais "Implement a Reader type that emits an infinite stream of the ASCII character 'A'. "
Starting with the exercise it was very confusing for me that a …
-
Context: http://127.0.0.1:3999/basics/7
```go
package main
import "fmt"
func split(sum int) (x, y int) {
x = sum * 4 / 9
y = sum - x
return
}
func main() {
fmt.Println(split(17))…