Sundaram Kumar Jhasundaram2023.hashnode.dev·Nov 12, 20242024 Beginner's Guide to Learning Go (Golang)A Journey into Modern Programming Excellence Welcome, fellow developers and coding enthusiasts! Whether you're a veteran programmer exploring new horizons or taking your first steps into the programming world, you're about to embark on an exciting jo...GO Beyondgolang
MIchael Akoraimbits.hashnode.dev·Jan 10, 2023Golang Basics II: If/Else Statements and ArraysLike in the previous section, I drop the snippets, and we code along and run. package main import "fmt" func main() { if condition { expression... } else { expression... } } Straight to If/Else statements. These...if-else in golang