I want to implement an iterative loop in my workbench. For this I have created a simple "While Loop" construct. The pseudo code is as below
var i, maxval;
i = 1;
maxval = 10
while (i < maxval)
{
i = i + 1;
print i;
}
I created a workbench
To implement the looping, the red line should be working but FME doesn't take it.
Please advise for any workarounds or what I may be missing?