//Meghivas: Week2_4.Presentation(); //function: class Week2_4 { public static void Presentation() { string FaveMusic = @"Could I interest you in everything? All of the time? A little bit of everything All of the time Apathy's a tragedy And boredom is a crime Anything and everythingv All of the time"; string FirstName = "Gal"; string LastName = "Kristof Gabor"; string name = $"My full name is: {FirstName} {LastName}"; string profile = "Informatics, Software Developing"; string hobby = "Gaming, programming and going out with friends"; string BirthDate = "2003, November, 19th"; string AboutMyself = $"{name}, I was born in {BirthDate}, I am currently learning {profile} and my main hobbies are: {hobby}"; Console.WriteLine($"My favorite music is 'Welcome to the internet' By Bo Burnham, here is a vers from it: n {FaveMusic}"); Console.WriteLine($"n{AboutMyself}"); } }