Update root helpers.rs
This commit is contained in:
parent
76528c87d9
commit
b3860dfb28
20
helpers.rs
Normal file
20
helpers.rs
Normal file
@ -0,0 +1,20 @@
|
||||
use std::io;
|
||||
|
||||
pub fn read_std_in() -> String {
|
||||
let mut input = String::new();
|
||||
let mut done = false;
|
||||
while !done {
|
||||
match io::stdin().read_line(&mut input) {
|
||||
Ok(n) => {
|
||||
if n == 0 {
|
||||
done = true;
|
||||
}
|
||||
},
|
||||
Err(error) => {
|
||||
println!("error: {}", error);
|
||||
done = true;
|
||||
},
|
||||
}
|
||||
}
|
||||
return String::from(input.trim());
|
||||
}
|
Loading…
Reference in New Issue
Block a user