chatgpt is saying that for range with integer works different, like it is converted to an iterable type first, (to string) and iterates over rune ‘5’ only once, but when I run it in playground, it is working like I would have written:
for i := 0; i < count; i++ {
fmt.Println(“Hello!”)
}
Is this a new feature added in recent go update mine is running in go1.23.1 darwin/arm64.
Is this secure to use?