//.NET 7 includes C# 11, which comes with many new enhancements
// read about it here: https://medium.com/entech-solutions/new-features-in-c-11-net-7-with-interactive-examples-c8e4e5ea1e5a
using System;
//Enter age here
int age = 55;
var msg = $"Question: {
age switch
{
< 3 => "What is that smell?",
< 15 => "Did you do your homework?",
< 25 => "When are you moving out?",
< 50 => "Why is the time passing so fast?",
< 65 => "Is it time to retire yet?",
_ => "What is that smell?"
}
}";
Console.WriteLine("Age: " + age);
Console.WriteLine();
Console.WriteLine(msg);