강동현

Implement basic echo program

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