Add tool to generate huge source with overlong jumps

This commit is contained in:
K. Lange 2024-03-05 14:45:42 +09:00
parent 84203501a5
commit dcd1fafc85
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
print('for i in range(5):')
print(' if False:')
for i in range(10000):
print(' print(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i)')
print(' print("yay",i)')
print('print("lol")')