Thx you all. I' was trying to find a way to make the same of this C# code with a similar syntax:
for (int x = 0, y = 0; x <= 10 && y <= 10; x++, y++)
{
Console.WriteLine(x + y);
}
but i got lost on the way
Thx you all. I' was trying to find a way to make the same of this C# code with a similar syntax:
for (int x = 0, y = 0; x <= 10 && y <= 10; x++, y++)
{
Console.WriteLine(x + y);
}
but i got lost on the way