I run the following code in SublimeREPL:
while(True):
a = raw_input()
print a
How do I stop input when this is running? Ctrl+C, Ctlr+D, or Ctrl+Z don't seem to work like they do in a terminal.
I run the following code in SublimeREPL:
while(True):
a = raw_input()
print a
How do I stop input when this is running? Ctrl+C, Ctlr+D, or Ctrl+Z don't seem to work like they do in a terminal.
You have to do ctrl+break or ctrl+space to break the infinite recursion and abort the program