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