Variables and Constants
Before getting started
Constants
Untype constant
package main func main() { const name = "chloe" }
Type constant
Variables
Untype variable
Type variable
Types in Go
1. Declaring variables
1-1. Variable declaration method in Go
var variable_name variable_type
var variable_name variable_type1-2. :=
:=Last updated