Junior — Senior
What result will be output by the program
livecode
Task condition
Determine what text will appear in the console after executing the given code.
package main
// import "fmt"
func main() {
str := "Hello world"
str[0] = 'h'
fmt.Println(str)
}