Remove debug line, invalid rpy

This commit is contained in:
Elnu 2023-05-21 11:03:54 -07:00
parent 10e966ef05
commit 4371a3e5f1
2 changed files with 1 additions and 3 deletions

View file

@ -1,3 +1,2 @@
"Bob sat on the bench."
"Bob" "Good morning!"
eat
"Bob" "Good morning!"

View file

@ -115,7 +115,6 @@ pub fn parse_file(file_path: &str) -> Vec<Command> {
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,