This is a normal code block

for i in range(10):
    print(i)
// Comment
int i = 0;
while (i < 10)
{
    i++;
}