diference between REPEAT and FOR

Hi,
Please give some main differences between FOR loop and REPEAT…UNTIL
Thanks,
Breeze

FOR automatically increments the “loop variable” (which must be a numeric data type) by the gioven amount, REPEAT doesn’t, plus you can spacify any logical condition in the “UNTIL” clause.

Thanks for your replay:D

Thanks,
Breeze