echo.rs 156 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 use std::io; fn main() { loop { let mut input = String::new(); io::stdin().read_line(&mut input); print!("{}", input); } }