Go golang string menggunakan 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