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 Answers
+ 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!