Variables are named memory locations, that are used to refer to data in our program. General format for variable is Go is: var name type = expression
Variable names must start with letter and can contain letter and number.
Declaring variables
Variables are declared using varkeyword. Before using variables, they need to be declared. For declaring variables:
Use the var keyword.
Write a variable name.
Write the variable type.
Optionally, assign value using equals =
main.go
1
funcmain(){
2
var s string
3
s ="sumit"
4
var i, j, k int
5
}
Copied!
Multiple variables of same type can be declared using comma separation in name. All declared variables should be used.Variable name can not be reserved keywords.
keywords
1
breakdefaultfunc
2
interfaceselectcase
3
defergomap
4
structchanelse
5
gotopackageswitch
6
constfallthroughif
7
rangetypecontinue
8
forimportreturn
9
var
Copied!
Short variable declaration
Short variable declaration may be used to declare and initialize local variables.It takes the form name:=expression.Below declarations are one and the same
main.go
1
funcmain(){
2
var s string
3
s ="hello, world!"
4
t :="hello, world!"
5
6
var i int
7
i =42
8
j :=42
9
}
Copied!
Variable Scope
Variables are visible only with the scope they are declared. We can access the variable so long as it’s in scope, but once a variable is no longer in scope, attempts to access it will report an error. Scope is defined by braces {}