diff --git a/src/main.rs b/src/main.rs index 4b3f74b..30c2699 100644 --- a/src/main.rs +++ b/src/main.rs @@ -76,7 +76,7 @@ struct InterpreterState { impl ReplState for InterpreterState { fn update_state(&mut self, input: &Vec<&str>) { - match &input[..] { + match input[..] { ["set", "show", "tokens", "true"] => { self.show_tokens = true; },