What does writeline mean?
WriteLine is a method used to display a line of text on the console. It takes one parameter, which is the text to be displayed. When using the WriteLine method, it automatically moves to a new line after displaying the text.
Can you please pick up some milk from the store on your way home?
Could you grab some milk from the store when you’re coming back home?
Console.WriteLine("Hello World!");
The above code will print out the text “Hello World!” on the console, followed by a new line.