This commit is contained in:
2024-09-17 02:08:38 -04:00
parent 9c6121262a
commit 61604e25bd
2 changed files with 17 additions and 14 deletions

View File

@ -171,11 +171,10 @@ impl Lexer {
"else" => Token::Else,
"fi" => Token::Fi,
"while" => Token::While,
"for" => Token::For,
"do" => Token::Do,
"done" => Token::Done,
"for" => Token::For,
"in" => Token::In,
"function" => Token::Function,
_ => Token::Word(word),
}
}