Ve a hacer una cadena de Char Array

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