Skip to content

Commit 519e20c

Browse files
authored
Update tpy.py
1 parent 2d7541b commit 519e20c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

true/tpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
p=code.index('"', p)
1313
elif code[p] == "." : print(s.pop())
1414
elif code[p] == "," :
15-
if i : s.append(i.pop())
15+
if i : s.append(i.pop(0))
1616
else : raise EOFError("Input reached an EOF")
1717
elif code[p] in "0123456789" : s.append(int(code[p]))
1818
elif code[p] == "[" : p=code.index("]", p)

0 commit comments

Comments
 (0)