Fixed a minor bug in the REPL

This commit is contained in:
nocturn9x 2020-07-30 15:56:27 +02:00
parent 71a73d010b
commit 6a5b977fab
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ class JAPL(object):
source = input(">>> ")
except (EOFError, KeyboardInterrupt):
print()
return
else:
if not source:
continue