You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem? Documentation only.
What is the expected output?
for _, s := range os.Args {
fmt.Println(s)
}
and
for _, s := range os.Args {
fmt.Fprintln(w, s)
}
What do you see instead?
for i, s := range os.Args {
fmt.Println(s)
}
and
for i, s := range os.Args {
fmt.Fprintln(w, s)
}