Please help me with the task: "Enter the programming world"

Hello, I’m working on this task:

Using Console.WriteLine command, write a program that outputs to the screen: “Enter the programming world!” Pay attention to upper and lower case letters in Console.WriteLine(…) Size matters!
You should also make sure that spelling of the text is exactly the same as it is in the task description.

Here is my code:


public static class HelloWorld
{
   public static void Main()
   {
       Console.WriteLine()("Enter the programming world!);
   }
}

Can anyone please help me to solve it?

Please check the format of the Console.WriteLine command. It should have only one opening and one closing parenthesis with a text surrounded by quotes. After the command, you should place the semicolon. Here is an example:

Console.WriteLine("Some text");
1 Like

I’ve tried this:

Console.WriteLine("Enter the programming world!");

it doesn’t work either!

Hm… This line looks correct. Did you leave all the other code lines? The class definition and other things before and after this line?

1 Like

Got it, now it is green! Thank you. This is my first program!