Removed test line

This commit is contained in:
Maddox Werts 2025-04-18 15:54:31 -04:00
parent 92a666d9bc
commit 8c18164dbd

View file

@ -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);