Lesson 5: var & naming
When the value already says what the type is, you can write var instead of repeating the type: var name = "Dana"; — C# infers that name is a string. Note: var is still a fixed type (you can't put a number in later). We'll also learn naming rules: a name starts with a letter or _, has no spaces, and