C# Interpreted Language - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T09:42:38Z http://stackoverflow.com/feeds/question/366077 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366077/c-interpreted-language 1 C# Interpreted Language Dested 2008-12-14T02:11:35Z 2008-12-14T03:42:49Z <p>I am looking to write an interpreted language in C#, where should I start? I know how I would do it using fun string parsing, but what is the correct way?</p> http://stackoverflow.com/questions/366077/c-interpreted-language/366091#366091 8 Answer by Renaud Bompuis for C# Interpreted Language Renaud Bompuis 2008-12-14T02:31:12Z 2008-12-14T02:53:39Z <p>It can be a pretty difficult endeavour to do right.</p> <p>If you don't have much knowledge in compiler theory you should probably first start reading about it.<br /> Just using "fun string parsing", if I understand that term correctly, isn't going to get you very far at all.</p> <p>The first basic step is to write your language grammar that defines the valid syntax for the language.<br /> A tool like <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> will help you get the pieces together, but I would suggest reading the <a href="http://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools" rel="nofollow">Dragon book</a> as it is the canonical starting point to get up to speed on the subject.</p> http://stackoverflow.com/questions/366077/c-interpreted-language/366122#366122 0 Answer by Foredecker for C# Interpreted Language Foredecker 2008-12-14T03:18:04Z 2008-12-14T03:18:04Z <p>Hi Dested,</p> <p>Checkout the <a href="http://connect.microsoft.com/Phoenix" rel="nofollow">Phoenix compiler</a> from Microsoft. This will provide many of the tools you will need to build a compiler targeting native or managed environments. Among these tools us a optimizing back end.</p> <p>I second Cycnus' suggestion on reading Aho Sethi and Ullman's "Dragon Book" (<a href="http://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools" rel="nofollow">Wikipedia</a>, <a href="http://rads.stackoverflow.com/amzn/click/0321486811" rel="nofollow">Amazon</a>). </p> <p>RGR</p> http://stackoverflow.com/questions/366077/c-interpreted-language/366129#366129 3 Answer by Paul Betts for C# Interpreted Language Paul Betts 2008-12-14T03:31:17Z 2008-12-14T03:42:49Z <p>If you want to build an interpreted language on .NET, the DLR is the way to go - check out Martin Maly's LOLCODE sample at <a href="http://www.iunknown.com/2007/11/lolcode-on-dlr.html" rel="nofollow">http://www.iunknown.com/2007/11/lolcode-on-dlr.html</a></p> <p>Edit: Here's another link with more information from Scott Hanselman: <a href="http://www.hanselman.com/blog/TheWeeklySourceCode11LOLCodeDLREdition.aspx" rel="nofollow">http://www.hanselman.com/blog/TheWeeklySourceCode11LOLCodeDLREdition.aspx</a></p>