강동현

Implement basic echo program

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