package main import "fmt" var ( MAJOR int = 1 MINOR int = 2 TINY int = 1 VERSION string = fmt.Sprintf("%d.%d.%d", MAJOR, MINOR, TINY) )