go-playground/da_tour/datour/short-variable-declarations.go

12 lines
175 B
Go

package datour
import "fmt"
func ShortVariableDeclarations() {
var i, j int = 1, 2
k := 3
c, python, java := true, false, "no!"
fmt.Println(i, j, k, c, python, java)
}