public static void Main()
Console.WriteLine("Hello!");
Console.WriteLine("This is a: " + a);
Console.WriteLine("This is a: " + a);
Console.WriteLine("This is a: " + a);
bool logicalStatement = false;
Console.WriteLine("Hello? This is the while loop.");
Console.WriteLine("Hello? This is the do-while loop.");
} while (logicalStatement);
for (int num = 1; num < 7; ++num)
for (int num = 10, anotherInteger = 0 ; num > 0; num--, anotherInteger -=1)
anotherInteger = num * 2;
Console.WriteLine(anotherInteger);