STR: def spacingX = 15 def spacingY = 15 repeat 0 to (200 / spacingX - 1) using i { repeat 0 to (190 / spacingY - 1) using j { def a = i \* spacingX def b = j \* spacingY text(i \* 30 j \* 30 8 i) } } -> PRINT TO PDF
STR:
def spacingX = 15
def spacingY = 15
repeat 0 to (200 / spacingX - 1) using i {
repeat 0 to (190 / spacingY - 1) using j {
def a = i * spacingX
def b = j * spacingY
text(i * 30 j * 30 8 i)
}
}
-> PRINT TO PDF