int age = 22; Console.WriteLine($"Age: {age}");
string color = blue; // Both versions do the same thing. Console.WriteLine("The sky is " + color); Console.WriteLine($"The sky is {color}"); //Note the dollar ^sign and ^curly^ brackets.
/hgfh