Please help me with the task: "Hello world"

Hello, I’m working on this task:

Write a program that outputs to the screen: “Hello. Who are you? How can I get out of here?”

Here is my code:


public static class HelloWorld
{
   public static void Main()
   {
       Console.WriteLine("Paste text here. Don't forget to leave the quotes.");
   }
}

Can anyone please help me to solve it?

Hi Agamyrat, for this task all you need to do is copy the desired text, and paste it in the Console.WriteLine line. You don’t need to change anything else in your code but the Console.WriteLine line, so it should look like this:

Console.WriteLine(“Hello. Who are you? How can I get out of here?”);

1 Like