I’d like to make some output stub for a community puzzle that requires a loop write at the end. However it looks like the stub generator will consider anything after the first write statement as part of the text to write, e.g.
write number of turns
loop N write game state at turn T
Produces this for Python:
print “write number of turns”
print “loop N write game state at turn T”
Instead of the expected:
print “write number of turns”
for i in xrange(n):
print “game state at turn T”
note that you can also put variable: write join("constant", var1, var2, "constant2")
or write join("constant", var1, var2, "constant2", sep=" separator ")