This article documents all Go Programming Language (GoLang) resources, tools, tutorials and documentation. Resource Link Go Tour Go Tour Go Language Specifications Golang Specs Go Documentation Go.Dev/Doc GoLang Wiki Golang Wiki Official Go Blog Go Blog Go Faq Go.dev/FAQ Go…
Go Programming language has two data types rune and string that are used to define characters and strings in go respectively Characters in Go Characters are runes in go language, rune literals are expressed in single quotes (‘) . Where,…
Go language has only one looping construct, that is for. There are three forms of for loops in Go. For can be used with single condition much like while loop in other programming language, a “for” clause which much like…