Hello,
I recently downloaded the Sublime Text plugin “REPL” so I can run input() through it.
For sake of simplicity, I will express the error I am receiving with a very simple line of code:
message = input(“Tell me something, and I will repeat it back to you: “)
print(message)
When I run it through REPL and type in an input message it returns this:
Tell me something, and I will repeat it back to you: while :
pass
It just returns “while: pass”. Does anybody know what is going on here?
Thank you,
Edan