Run ❯
Get your
own C#
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
using System; namespace MyApplication { class Program { static void Main(string[] args) { for (int i = 0; i <= 10; i = i + 2) { Console.WriteLine(i); } } } }
0
2
4
6
8
10