Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Created July 6, 2020 14:04
Show Gist options
  • Save PrateekKumarSingh/fa3e2a97b1b711a73839404664619680 to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/fa3e2a97b1b711a73839404664619680 to your computer and use it in GitHub Desktop.
using System;
namespace app
{
class Program
{
// main method returns integer
static int Main(string[] args)
{
Console.WriteLine("Hello World!");
return 123;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment