Allez faire de la chaîne à partir du tableau char

chars := []rune{'h','e','l','l','o'}
str := string(chars)
fmt.Println(str) // hello
Dopey Diplodocus