Golang 101: Functions ExplainedIn this post, we’ll see how to create functions, call functions from one another, and a look at IIF (Immediately invoked functions) in…Jul 24, 2023Jul 24, 2023
Scopes in Go languageDo you know variables in Go language have global and local scopes? We’ll see what those scopes are and at the end you have a puzzle to…Jul 20, 2023Jul 20, 2023
What are constants in Go language?Constants provide a way to reuse commonly used variables across programs. We’ll see how to create single, multiple constants in this postJul 13, 2023Jul 13, 2023
Your first program in the Go languageHere we write a simple program and describe what each line in the program is from Go compiler perspective. Why there are no line endings?Jul 12, 2023Jul 12, 2023
Different ways to declare variables in the Go languageHow to declare single, multiple variables and we also see a shorthand syntax for declaring variables in go languageJul 11, 2023Jul 11, 2023