ksameersrk / aug-02-10-2021

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction to Golang

	type Instructor struct {
		name string
		email string
		books [2]string
	}
	
	instructor := Instructor{
		name: "Prabhu Sunderaraman", 
		email: "prabhu.bits@gmail.com", 
		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


Languages

Language:Go 100.0%