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 c86a1f6 commit 1084facCopy full SHA for 1084fac
true/tpy.py
@@ -4,7 +4,7 @@
4
try: i = open(sys.argv[2]).readlines()
5
except: i=[]
6
except: print(f"Usage: python {__file__.split(chr(0x5c))[-1]} \"(file name)\"");exit()
7
-p = 0; ts = []; s = []; ld = []
+p = 0; ts = []; s = []
8
if not code : code = " "
9
while 1:
10
if code[p] == '"' :
@@ -20,10 +20,7 @@
20
elif code[p] == "-" : s.pop()
21
elif code[p] == "`" : s.append(int(s.pop())*-1)
22
elif code[p] == ":" : s.append(s[-1])
23
- elif code[p] == '(' :
24
- p+=1; ld.append(code[p : code.index(')', p)])
25
- p=code.index(')', p)
26
elif code[p] == "^" : s.append(s[int(s[-1]-1)])
27
if code[p] == "\n" : break
28
if len(code) == p +1 : p = -1
29
- p += 1
+ p += 1
0 commit comments