func TestFoo(t *testing.T){
slc := []int{1,2,3}
for _,val range slc{
fmt.Println("Hello, playground")
}
gives the error "expected 1 expression". Is there a reason that I am missing for this difference? The first error is way more useful.