Skip to content

Instantly share code, notes, and snippets.

@laynor
Created October 6, 2014 20:00
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 laynor/3e83f8f413f570b47339 to your computer and use it in GitHub Desktop.
Save laynor/3e83f8f413f570b47339 to your computer and use it in GitHub Desktop.
using System;
using clojure.clr.api;
namespace CljEmbedExample
{
class Program
{
static void Main(string[] args)
{
var evalFn = Clojure.var("clojure.core", "eval");
evalFn.invoke(Clojure.read("(import 'System.IO.MemoryStream)"));
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment