13 lines
258 B
Bash
13 lines
258 B
Bash
$ go run variables.go
|
|
initial
|
|
1 2
|
|
true
|
|
0
|
|
apple
|
|
|
|
# The shorthand `:=` initialization of variable can
|
|
# only be used inside any function.
|
|
# If used outside any function, it would generate
|
|
# `syntax error: non-declaration statement outside
|
|
# function body`.
|