Lesson 7: String interpolation
Concatenation with + works, but it's easy to forget spaces and get tangled. A cleaner way is interpolation: put a $ before the string, then write a variable name inside curly braces {}. For example $"Hello, {name}!" replaces {name} with the value. Note: in C# the sign is $ (not f like Python), and w