Jonathan Allen
Jonathan Allen

Reputation: 70307

DLR Language Design Example

Can someone point me to an example of building a simple hosted language using the DLR? My needs are modest, basically I just want to be able to evaluate simple case-insensitive expressions.

Upvotes: 2

Views: 1589

Answers (2)

Dino Viehland
Dino Viehland

Reputation: 6486

The CodePlex DLR site includes a walk through of a simple LISP like language called Sympl:

http://dlr.codeplex.com/wikipage?title=Docs%20and%20specs&referringTitle=Home

There are implementations in both C# and IronPython.

Upvotes: 3

Related Questions