[Golang] Control flow

Golan Controle flow

Golang裡面 if 的用法

package main

import (
	"fmt"
)

func main() {
	if x := 42; x == 42 {
		fmt.Println("001")
	}
	fmt.Println("here's a statment")
	fmt.Println("something else")
}

使用分隔號區分