diff --git a/src/prolog/machine/system_calls.rs b/src/prolog/machine/system_calls.rs index 6915a863..78677b94 100644 --- a/src/prolog/machine/system_calls.rs +++ b/src/prolog/machine/system_calls.rs @@ -40,7 +40,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, _ => {} }