Aller imprimer plusieurs valeurs à la fois en imprimant les variables

// Program to illustrate fmt.Print() 

package main

// importing the fmt package
import ("fmt")

func main() {
  
  name := "John" 
  fmt.Print("Name: ", name)
}
SAMER SAEID