DSLs in Groovy: Say What You Mean, Mean What You Say
The history of computer programming has been bridging the gap between what the user says (“We need to add sales tax to each item in the order”) and what the programming language requires you to say (“for Iterator i = orderList.iterator();”). Building Domain Specific Languages (DSLs) allow you to express …