4

I'd like to learn more how to create a language for .NET framework. I think I'd like to build a DLR language. I'm having hard time founding good resources. I found a descent article on MSDN that was written more than a year ago. I also spent couple of hours looking at IronPython source code.

Could you please share with your resources on this subject.

Thanks

Vadim
  • 21,044
  • 18
  • 65
  • 101
  • The authoritative SO question on compiler resources: http://stackoverflow.com/questions/1669/learning-to-write-a-compiler . Of course you need to understand you target (.NET) too. – dmckee --- ex-moderator kitten Sep 19 '09 at 14:29
  • and look, in the first answer to the above "Roll Your Own Compiler for the .NET framework": http://msdn.microsoft.com/en-us/magazine/cc136756.aspx – dmckee --- ex-moderator kitten Sep 19 '09 at 14:31
  • @dmckee, I read the article and I mentioned it in my question. However, the link to the article in my question is not very descriptive. You need to click on it to see what article it reefers. I should've done a better job. – Vadim Sep 19 '09 at 14:53

1 Answers1

1

Have a look at the links compiled on this blog.

http://benjaminnitschke.com/post/2009/03/31/Writing-your-own-programming-language-with-the-DLR-%28Dynamic-Language-Runtime%29.aspx

chollida
  • 7,834
  • 11
  • 55
  • 85