My output says
.\main1.go:8: invalid identifier character U+200b
.\main1.go:8: undefined: fmt in fmt.Print
I even tried it on go playground same response.
Someone posted an answer "0 1 2 3" with the same code.
How come I copied the same code but with the above result.
package main
import "fmt"
func main() {
x := []string{"i","j","k","l"}
for v := range x {
fmt.Print(v, " ")
}
fmt.Println()
}