Commentaire unique dans Go

package main
import ("fmt")

func main() {

  // declare a variable
  age := 25
 
  // print the variable
  fmt.Println("Age is", age)
}
SAMER SAEID