Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 445 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 445 Bytes

Introduction to Golang

	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"},
	}

To Do

  • Go Overview
  • Setup, Tooling
  • Go language constructs
  • Structs
  • Interfaces
  • Pointers
  • Packages
  • Concurrency basics
  • JSON
  • Packaging, Deployment