September 2018
Beginner
360 pages
9h 28m
English
This appendix provides our solutions for the end-of-lesson exercises and capstone projects. Please keep in mind that there is more than one solution for any problem.
You can download these solutions and the rest of the source code from the Manning website at www.manning.com/books/get-programming-with-go or browse the source code online at github.com/nathany/get-programming-with-go.
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, Nathan")
fmt.Println("
hola")
}
package main import "fmt" func main() ...
Read now
Unlock full access