User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T10:24:55Zhttp://stackoverflow.com/feeds/user/9529http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1669/learning-to-write-a-compiler/159530#1595303Answer by sanjayss for Learning to write a compilersanjayss2008-10-01T20:24:42Z2008-10-01T20:24:42Z<p>The Dragon Book is too complicated. So ignore it as a starting point. It is good and makes you think a lot once you already have a starting point, but for starters, perhaps you should simply try to write an math/logical expression evaluator using RD, LL or LR parsing techniques with everything (lexing/parsing) written by hand in perhaps C/Java. This is interesting in itself and gives you an idea of the problems involved in a compiler. Then you can jump in to your own DSL using some scripting language (since processing text is usually easier in these) and like someone said, generate code in either the scripting language itself or C. You should probably use flex/bison/antlr etc to do the lexing/parsing if you are going to do it in c/java.</p>
http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/65756#657561Answer by sanjayss for What is the easiest language to start with?sanjayss2008-09-15T19:05:02Z2008-09-15T19:05:02Z<p>TCL -- simplest bar none</p>