summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 063fa39..b3bdc29 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,5 @@
use std::fs::File;
-use std::io::{self, BufRead, BufReader, Read};
+use std::io::{self, BufRead, BufReader, Read, Write};
use structopt::StructOpt;
mod choice;
@@ -14,14 +14,18 @@ fn main() {
let buf = BufReader::new(read);
+ let stdout = io::stdout();
+ let lock = stdout.lock();
+ let mut handle = io::BufWriter::new(lock);
+
let lines = buf.lines();
for line in lines {
match line {
Ok(l) => {
for choice in &opt.choice {
- choice.print_choice(&l, &opt);
+ choice.print_choice(&l, &opt, &mut handle);
}
- println!();
+ writeln!(handle, "");
}
Err(e) => println!("ERROR: {}", e),
}