Что выведется
package main // import "fmt" func main() { s := "Hello world" s[0] = 'h' fmt.Println(s) }