Please help me with the task: "Naming.NamingIsHard"

Hello, I’m working on this task:

Make the program compile (work). It should output “The hardest is naming. I can try 100 names and still not find a good one!”

Here is my code:


namespace Naming
{
   public static class NamingIsHard
   {
       public static void Main()
       {
           int count = 100
           string hardest = "naming";
           string InterpolatedString = $"The hardest is {hardest}. I can try {count} names and still not find a good one!";
           Console.WriteLine(InterpolatedString);
       }
   }
}

Can anyone please help me to solve it?

Hi Purvesh, welcome to Codeasy!

Your code looks good, what is the error you are getting? The only thing I can think of right now is the absence of
using System;

at the top.

its the semicolon at the end of “int count = 100”

2 Likes

Thank you!