I wrote past few posts based on my notes from The Go Progamming Language by Donovan. In this article, we will try to make a go serverand expose rest APIs to read an write values from MySQL database. We will assume that your mySQL server is running at 3306 port in your local computer. net/http... Continue Reading →
GoLang Journey – Program Structure
Names The name of go functions, variables, constants, types and packages abide by following rules: Name begins with a letter or underscoreName can have any number of additional letters, digits as well as underscoresCase in name matters; list and List are two different namesGo has 25 reserved words like if, map, package, go etceteraIf name... Continue Reading →