0
Can someone help me? Code isn't working
using System; namespace MyApp { class Program { static void Main(string[] args) { Console.WriteLine("C# is cool") } } }
1 Resposta
+ 8
You're missing a semicolon at the end.
Console.WriteLine();
using System; namespace MyApp { class Program { static void Main(string[] args) { Console.WriteLine("C# is cool") } } }