diff --git a/demo/demo.rpy b/demo/demo.rpy index 69be8ba..5a94c16 100644 --- a/demo/demo.rpy +++ b/demo/demo.rpy @@ -1,3 +1,2 @@ "Bob sat on the bench." -"Bob" "Good morning!" -eat \ No newline at end of file +"Bob" "Good morning!" \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 775617b..252e2dd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -115,7 +115,6 @@ pub fn parse_file(file_path: &str) -> Vec { let token_lines = tokenize_file(file_path); let mut commands = Vec::new(); for line in token_lines { - println!("{:?}", line); commands.push(match line.as_slice() { [Str(text)] => Say { name: None,