"Repeat While" in RM 5.1

So I was porting a few older RM Rules to 5.1 and noticed the "Repeat While" option - does this make the below line redundant?

@bcopeland @bobbyD

Yes. There are both While, with test at the beginning of the loop (so it may run zero times) and Until, with the test at the end of the loop, so it runs at least once.

2 Likes

Cheers, that definitely makes life easier. :+1: