pub fn get_text_stdout() -> StdoutExpand description
Get a text stdout writer.
Returns a writer suitable for text output. On most platforms, this is simply stdout.
ยงExample
use click::utils::get_text_stdout;
use std::io::Write;
let mut stdout = get_text_stdout();
writeln!(stdout, "Hello, World!").unwrap();