Conditional - If, Else if, Else
Conditional - If, Else if, Else
Here's an example of using if and else
package main
import (
"fmt"
)
func main() {
x := 42
if x == 40 {
fmt.Println("Our value was 40")
} else {
fmt.Println("Our value was not 40")
...
blog.cloudnativefolks.org1 min read