Allez Golang String en utilisant Backtick

// To represent a string with a backtick

package main
import "fmt"

func main() {

  //  representing string with `  `    
    message := `I love Go Programming`
    
    fmt.Println(message)
}
SAMER SAEID