We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d7541b commit 519e20cCopy full SHA for 519e20c
true/tpy.py
@@ -12,7 +12,7 @@
12
p=code.index('"', p)
13
elif code[p] == "." : print(s.pop())
14
elif code[p] == "," :
15
- if i : s.append(i.pop())
+ if i : s.append(i.pop(0))
16
else : raise EOFError("Input reached an EOF")
17
elif code[p] in "0123456789" : s.append(int(code[p]))
18
elif code[p] == "[" : p=code.index("]", p)
0 commit comments