Skip to content

soumyayelamali/aug-02-10-2021

 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%