why are we still here? just to suffer? in csharp

Here's a C# console application that prints the infamous "Why are we still here? Just to suffer?" quote:

main.cs
using System;

class Program
{
    static void Main(string[] args)
    {
        string meme = "Why are we still here? Just to suffer?";
        Console.WriteLine(meme);
    }
}
178 chars
11 lines

This program defines a string variable meme that stores the meme, and then prints it to the console using the Console.WriteLine method.

gistlibby LogSnag