Skip to content

Instantly share code, notes, and snippets.

@Porges
Created April 14, 2013 23:41
Show Gist options
  • Save Porges/5384727 to your computer and use it in GitHub Desktop.
Save Porges/5384727 to your computer and use it in GitHub Desktop.
example of delta that works
using System;
namespace DeltaExample
{
class Program
{
static void Main(string[] args)
{
Δ();
}
static void Δ()
{
Console.WriteLine("Δ");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment