Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Latest commit

 

History

History
12 lines (8 loc) · 558 Bytes

HelloWorld.md

File metadata and controls

12 lines (8 loc) · 558 Bytes

Intro to Programming

Run your First Program

Just click the run icon to get started

Console.WriteLine("Hello World!");

Congratulations! You've run your first C# program. It used the Console.WriteLine method to print Hello World. Console is a type that represents the console window. WriteLine is a method of the Console type that prints a line of text.