Skip to content

Instantly share code, notes, and snippets.

@IshamMohamed
Created January 1, 2015 07:14
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 IshamMohamed/1c92e1ff11b2fca794a8 to your computer and use it in GitHub Desktop.
Save IshamMohamed/1c92e1ff11b2fca794a8 to your computer and use it in GitHub Desktop.
This is the C# snippt to generate the ASCII of "Happy 2015" here @ http://programmium.wordpress.com/2015/01/01/happy-new-year-with-pal%C2%B7in%C2%B7drome/
using System;
namespace ASCII_Art
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(" _ _ ___ ___ __ _____ ");
Console.WriteLine(" | | | | |__ \\ / _ \\/_ | ____|");
Console.WriteLine(" | |__| | __ _ _ __ _ __ _ _ ) | | | || | |__ ");
Console.WriteLine(" | __ |/ _` | '_ \\| '_ \\| | | | / /| | | || |___ \\ ");
Console.WriteLine(" | | | | (_| | |_) | |_) | |_| | / /_| |_| || |___) |");
Console.WriteLine(" |_| |_|\\__,_| .__/| .__/ \\__, | |____|\\___/ |_|____/ ");
Console.WriteLine(" |_| |_| |___/ ");
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment