type Instructor struct {
name string
email string
books [2]string
}
instructor := Instructor{
name: "Prabhu Sunderaraman",
email: "[email protected]",
books: [2]string{"Practical ExtJS4,", "Spring 3.0 Black book"},
}
- Go Overview
- Setup, Tooling
- Go language constructs
- Structs
- Interfaces
- Pointers
- Packages
- Concurrency basics
- JSON
- Packaging, Deployment