Create Your "Hello, World" App

Go to your Command Prompt/Terminal and run the following command:

The dotnet new console command creates the new console app for you.
The -o parameter creates a directory named MyApp where your app, along with the required files, is stored.

If the process so far goes well, your Command Prompt/Terminal will look as follows:

The main file in the MyApp folder is Program.cs. By default, it already contains the necessary code to write "Hello World!" to the Console.

In order to run this app, open the Command Prompt/Terminal in the same directory and enter the following command:

If your app works properly, your Command Prompt/Terminal will look as follows:

You can now go ahead, edit the program in a code editor as much as you'd like to and have fun!

Submit Your App