Skip to content

Instantly share code, notes, and snippets.

@philippgille
Created February 27, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philippgille/bcd254ce51c9ba235381 to your computer and use it in GitHub Desktop.
Save philippgille/bcd254ce51c9ba235381 to your computer and use it in GitHub Desktop.
C# Hello world Gist test
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello world!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment