I just saw that Ayende Rahien wrote a book about Domain Specific Languages using Boo? I have never heard of Boo before that point. Can anyone speculate as to the reason he would choose that language?
feedback
|
|
If you're going to implement a DSL in .NET, Boo is a reasonably obvious choice because you can influence the compiler pipeline yourself. This allows you to add to the syntax of the language, just like C# language designers did in C# 3 by introducing query expressions. This gives you greater flexibility in making the DSL look exactly how you want it to look. | |||||||||||
feedback
|
|
A few projects using Boo and taking advantage of its special features: | |||||||||||||
feedback
|
|
BOO is a powerful domain-specific language specifically for building domain-specific languages. It would be hard to write a meaningful text on DSLs without at least bringing it up. | |||
|
feedback
|
|
Boo is another .NET language; it's as good a choice as any. The author of your material is probably familiar with it, or thought that it made a good example language. You might want to see the Boo web site for more information on the language itself. | |||||
feedback
|
|
Boo isn't a DSL, it's a python-ish language for .Net. | |||||
feedback
|
|
| |||
|
feedback
|
|
Boo has a nice clean syntax and some syntax features that make it DSL friendly. In my opinion, Boo makes a few cool choices around syntax deviation from Python. Also I think Ayende has been working with the language for a while now. So familiarity probably played a factor. He has been working on it with the Rhino stuff and NHiberbate I think. | |||
|
feedback
|
|
| |||
|
feedback
|
|
Just to be complete:
| |||
|
feedback
|
|
Boo is a very interesting language. The more I look at the more I wonder why it isn't much bigger then it is. I am a VB.NET, C# sort of guy. I have taken a look at Python and love the syntax so much that I have written a few apps that I used as utility applications at work. Because I work in a Microsoft (for the most part) environment I wrote the applications in IronPython which gives me the utility of most of native Python coupled with .Net. I didn't like Visual Studio implementation of IronPython (read I couldn't get it to work), so I opted for SharpDevelop 4.0 which I found much easier to write IronPython in (....I could easily get it to work) I noticed Boo there read up on it and I thought this can't be a serious language. As I have been trying to discover it's limitations I am becoming a fan. It is worth a look . Why do I like it better (or I think I will ) then IronPython? I don't have to have a hybrid environment (Python libraries and .Net) the syntax is more or less Python with .NET it is amazing the lack of books (1 or 2) or anything on the Net I am probably going to post something on YouTube on a simple windows project un the name BionicCyborg if I get to it. Short answer why it isn't wildly popular? Answer: The best IDE for Boo development on windows is SharpDevelop and there aren't a great deal of conferences pushing developing on that IDE! | |||
|
feedback
|