vote up 5 vote down star
2

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?

flag
Why would he not choose that language? If you've never heard of it you obviously know nothing about it... – Stefan Thyberg Feb 27 at 16:54
11  
Well that was the point of the question... But thanks for leaving the most useless comment ever... – Shane Scott Feb 27 at 19:43

8 Answers

vote up 13 vote down check

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.

link|flag
C# Query Expressions / Expression Trees don't let you make up new keywords in C# does it? Did I miss something? This seems to be the real power in the Boo macro stuff. – B. Tyndall Mar 4 at 23:35
@Bruno: I meant that you can add your own syntax just like the language designers added query expressions in C# 3.0. Will clarify. – Jon Skeet Mar 4 at 23:50
I can see it now: "insert language here" -- a syntax extension for boo! :D – RCIX Sep 11 at 8:42
vote up 4 vote down

Boo isn't a DSL, it's a python-ish language for .Net.

link|flag
vote up 4 vote down

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.

link|flag
vote up 3 vote down

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.

link|flag
1  
The author chose Boo because it's especially suited for DSL implementation due to its open compiler architecture, not just because he's familiar with it. – Mauricio Scheffer Feb 28 at 3:09
vote up 2 vote down

It seems that lot of Unity developers uses Boo, like the famous Blurst guys...

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Some notorious projects using Boo and taking advantage of its special features:

link|flag
vote up 0 vote down

http://boo.codehaus.org/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.