Question: Which choice does _not_ send output to standard error?
- println(message)
- log.New(os.Stderr, "", 0).Println(message)
- fmt.Errorf("%s\n", message)
- fmt.Fprintln(os.Stderr, message)
Answer: The correct answer of the above question is Option A:println(message)