From 501469303f6eeeb5e775c18da0ca23c61cbe6d62 Mon Sep 17 00:00:00 2001 From: David Lin Date: Wed, 3 Sep 2025 09:48:45 +0800 Subject: [PATCH] test --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index c26e692..654084b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,11 +22,11 @@ fn main() { }); // Uncomment this block to pass the first stage - // if !file_contents.is_empty() { - // panic!("Scanner not implemented"); - // } else { - // println!("EOF null"); // Placeholder, replace this line when implementing the scanner - // } + if !file_contents.is_empty() { + panic!("Scanner not implemented"); + } else { + println!("EOF null"); // Placeholder, replace this line when implementing the scanner + } } _ => { eprintln!("Unknown command: {command}");