Lesson 4: String variables
Until now we printed text directly. Now we'll store text under a name to reuse it. In C# you declare a string variable like this: string name = "Dana";. The word string is the type (what kind of value), name is the name, and = puts the value in. Then you write the name without quotes to get the valu