//! Output the string 'n' repeatedly until killed. The counterpart to the unix 'yes' utility.
//!//! Install instructions:
//!//! cargo install no
#[macro_use]externcrate clap;usestd::io::Write;fnmain(){app_from_crate!().get_matches();loop{matchwriteln!(std::io::stdout(),"n"){Err(_)=>break,Ok(())=>(),}}}