Example of a basic for loop.
for (int i = 0; i <= 5; i++) { Console.WriteLine(i); } // 0 // 1 // 2 // 3 // 4 // 5