For Loops in ReCT work basically the same way as they do in C# and Java. A For Loop always has a Variable, a Condition and an Action. A For Loop could look like this: for (var i <- 0; i < 10; i++){ //this will be run 10 times}