Skip to content

Instantly share code, notes, and snippets.

@leppie
Created March 6, 2013 14:20
Show Gist options
  • Save leppie/5099596 to your computer and use it in GitHub Desktop.
Save leppie/5099596 to your computer and use it in GitHub Desktop.
IronScheme eval in C#
using IronScheme;
using System;
class Program
{
static void Main(string[] args)
{
var kk = "'hello".Eval();
Console.WriteLine(kk);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment