class Program { static void Main() { MyPresentation(); } static void MyPresentation() { string name = "Andras"; string hobby = "football"; string date = "2003-10-11"; string movie = "Dune"; Console.WriteLine($"Hi, my name is {name}, my hobby is {hobby} and i was bor in {date}, and my fave movie is {movie}"); } }