start-loop [ repeat <repeat> ] \ [ use <loop counter> \ [ start-with <start with> ] [ add <add> ] ] <any code> end-loopCopied!
start-loop repeat 20 use p start-with 0 p-num p @ end-loopCopied!
set-number n set-number max = 30 start-loop set-number n add 1 if-true n mod 3 continue-loop end-if if-true n greater-than max break-loop end-if p-num n end-loopCopied!