aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index a30b4da..a0cca2c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -4,6 +4,13 @@ fn main() {
let stdin = io::stdin();
let input: Vec<String> = stdin.lock().lines().map(|line| line.unwrap()).collect();
+ for line in &input {
+ if line.starts_with("From: ") {
+ println!("!!!!!!!! {}", line);
+ // run matcher function
+ }
+ }
+
for l in &input {
println!("{}", l);
}