diff --git a/src/prolog/machine/system_calls.rs b/src/prolog/machine/system_calls.rs index d88dad91..01f9f7d6 100644 --- a/src/prolog/machine/system_calls.rs +++ b/src/prolog/machine/system_calls.rs @@ -41,7 +41,7 @@ pub fn next_keypress() -> ContinueResult { for c in stdin.keys() { match c.unwrap() { - Key::Char(' ') | Key::Char(';') => return ContinueResult::ContinueQuery, + Key::Char(' ') | Key::Char(';') | Key::Char('n') => return ContinueResult::ContinueQuery, Key::Char('.') => return ContinueResult::Conclude, _ => {} }