Hello,
I think I’m going to go mad if I can’t solve this.
Really simple, how can I make the input stub generator read two lines in the same loop.
I want to generate the following code (python3):
for i in range(N):
a = input()
b = input()
Yet I can’t find a way to do it through the input stub generator. Using:
loop N read a:string(256) b:string(256)
throws me an error.
Does anyone know how to help me? (Or even if what I’m trying to do is even possible).