From 8c18164dbdfe02a6488666a16de812b2727b7ebd Mon Sep 17 00:00:00 2001 From: OBJNULL Date: Fri, 18 Apr 2025 15:54:31 -0400 Subject: [PATCH] Removed test line --- project/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/project/src/main.rs b/project/src/main.rs index f2352f7..7b7df7b 100644 --- a/project/src/main.rs +++ b/project/src/main.rs @@ -18,7 +18,6 @@ fn main() -> Result<()> { // Creating a File Reader & Reading let reader = Reader::new(&args.file_input.clone())?; let text = reader.extract(); - println!("Text Content: {}", text.clone()); // Creating a Parser to read the Text Content let mut parser = Parser::new(text);