강동현

Implement basic echo program

Showing 1 changed file with 9 additions and 0 deletions
use std::io;
fn main() {
loop {
let mut input = String::new();
io::stdin().read_line(&mut input);
print!("{}", input);
}
}