potentially works
This commit is contained in:
parent
212d349a8a
commit
b96038db13
21
it/src/i.py
21
it/src/i.py
@ -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("?")
|
||||||