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("Hello. Who are you? How can I get out of here?");

Can anyone please help me to solve it?

I do the correct input an it says that i’m not doing it right
Is it a bug? Please tell me if it’s just me or other people have the same “bug”

Hi, it seems your program is missing closing brackets in the end:

public static class HelloWorld
{
   public static void Main()
   {
       Console.WriteLine("..");
    } <-- this line
} <-- and this one