Pergi mencetak beberapa nilai sekaligus variabel pencetakan

// Program to illustrate fmt.Print() 

package main

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

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