Go is statically typed. The typical variable declaration is:
var <var_name> <data_type> = <value>
var s string = "Hello world" var i int = 100 car b bool = false var f float64 = 3.14