var menu = new { Special = "Today's special is Tuna"};
var leftTv = menu.Special;
var rightTv= menu.Special;
System.Console.WriteLine($"You ask Joseph to change the special to Salad.");
System.Console.WriteLine($"He complains that you don't make friends that way, but sits down and makes the change to the menu web page anyway.");
menu = new { Special = "Today's special is Salad"};
System.Console.WriteLine($"leftTv is now '{leftTv}'.");
System.Console.WriteLine($"rightTv is now '{rightTv}'.");
System.Console.WriteLine($"Joseph puts ladder the in the bin.");