package main import "fmt" func main() { const value = 15 var i int = value var f float64 = value fmt.Println(i) fmt.Println(f) }