User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:24:55Z http://stackoverflow.com/feeds/user/9529 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/159530#159530 3 Answer by sanjayss for Learning to write a compiler sanjayss 2008-10-01T20:24:42Z 2008-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#65756 1 Answer by sanjayss for What is the easiest language to start with? sanjayss 2008-09-15T19:05:02Z 2008-09-15T19:05:02Z <p>TCL -- simplest bar none</p>