Programming Languages
Go
Subjective
Oct 04, 2025
How do you declare variables in Go?
Detailed Explanation
Variable declaration in Go:
• Using var keyword: var name string = "John"
• Short declaration: name := "John"
• Multiple variables: var a, b, c int
• With initialization: var a, b = 1, 2
• Zero values: var i int (defaults to 0)
• Constants: const Pi = 3.14
• Type inference: var x = 42
• Block declaration:
var (
name string
age int
)
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts