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 9f93262 commit be72dd0Copy full SHA for be72dd0
piduck.py
@@ -33,7 +33,7 @@ def pharse_p1(line):
33
elif command[0] == "REPEAT":
34
try:
35
for i in range(int(command[1])):
36
- pharse_p2(last_line.strip(), [[], []], False)
+ pharse_p1(last_line)
37
except RecursionError:
38
eprint("RecursionError!")
39
exit(4)
@@ -104,7 +104,6 @@ def out(ccl):
104
105
106
def main():
107
- global last_line
108
if piargs.input is not None:
109
file1 = open(piargs.input, "r")
110
while True:
0 commit comments