Skip to content

Instantly share code, notes, and snippets.

@immmdreza
Last active June 28, 2020 18:00
Show Gist options
  • Save immmdreza/1bf56b365789e06d16b765be0aaa1078 to your computer and use it in GitHub Desktop.
Save immmdreza/1bf56b365789e06d16b765be0aaa1078 to your computer and use it in GitHub Desktop.
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
//this should write Hello World! on console
Console.WriteLine("Hello World!");
}
}
}
@immmdreza
Copy link
Author

Hello World

The very first code that every c# dev should write !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment