Golang Basics II: If/Else Statements and Arrays
Like 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...
aimbits.hashnode.dev3 min read