1
0

potentially works

This commit is contained in:
Deven Blake 2021-06-03 18:29:32 -04:00
parent 212d349a8a
commit b96038db13

View File

@ -3,10 +3,10 @@ def main(buffer, command):
print("?") print("?")
return buffer return buffer
i = "" i = []
while len(i) < 1 or i[-1] != ".\n": while True:
try: try:
i += input() + "\n" line = input()
# unintuitive behavior from ed # unintuitive behavior from ed
except KeyboardInterrupt: except KeyboardInterrupt:
print("?") print("?")