0
Printing
Im trying to print the phrase hello world! With this code: console.WriteLine(“hello world!”); But when i click run it says console not found im new to C# and i don’t understand whats wrong https://code.sololearn.com/cl08lEaSRvrw/?ref=app
2 Respostas
+ 2
This is a common mistake, you have put console.WriteLine("xyz") when it should be Console.WriteLine("xyz") your just missing the capital "C" at the beginning. Hope this helps
+ 1
Thank you so much!