When I run this code
package main
import ("fmt")
func main() {
i := 5
fmt.Println("Hello, playground %d",i)
}
I get the following warning: prog.go:5: Println call has possible formatting directive %d Go vet exited.
What is a proper way to do this?