use std::io::{self,Write};
fn main() {
let mut stderr = io::stderr();
let bytes_read_or_error = stderr.write(b"Goodbye, World!\n");
}