|
|
|
|
|
by Acorn
5371 days ago
|
|
Would it be possible to implement user input via the REPL instead of the current javascript prompts? Would be much less clunky. Also, at the moment something like this doesn't work at all (Python): while True:
user_input = raw_input()
if user_input is 'q':
break
else:
print user_input
|
|