up vote 21 down vote favorite
6
share [g+] share [fb]

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?

link|improve this question
http://boo.codehaus.org/ – Kb. Feb 27 '09 at 16:52
I hate this crazy fragmentation and dispersion of human efforts – gd1 Nov 17 '11 at 17:58
feedback

10 Answers

up vote 27 down vote accepted

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|improve this answer
2  
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. – brun Mar 4 '09 at 23:35
1  
@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 '09 at 23:50
I can see it now: "insert language here" -- a syntax extension for boo! :D – RCIX Sep 11 '09 at 8:42
feedback

A few projects using Boo and taking advantage of its special features:

link|improve this answer
Why "notorious"? Maybe, "well-known"? – Igor Pashchuk Aug 18 '11 at 20:08
@Igor: does it make any difference? – Mauricio Scheffer Aug 18 '11 at 20:09
1  
:) It's just the semantics of the English language. "Notorious" might pertain to a criminal. I don't think you meant these projects were well-known for something bad... – Igor Pashchuk Aug 22 '11 at 2:37
1  
@Igor: thanks, didn't know it had a negative connotation in English. I'll change it. – Mauricio Scheffer Aug 22 '11 at 3:10
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.

link|improve this answer
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.

link|improve this answer
3  
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 '09 at 3:09
feedback

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

link|improve this answer
3  
Isn't the book about implementing DSLs? I don't think hes claiming Boo is – tm1rbrt Jan 11 '10 at 16:32
feedback

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

link|improve this answer
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.

link|improve this answer
feedback

RenrakuOS is an operating system written entirely in Boo. More information here.

link|improve this answer
feedback

Just to be complete:

  • Some chapters of Ayende's book are now available to be read for free, and one of them is just about Boo and why it was chosen to develop the many DSLs the author created and qualified him to write the book
  • As many said the foremost reason to use Boo is that it has meta-language features, which is to say you can, for example, create macros that add syntactic elements to the language in the same code stretch that uses them, and doesn't have to pay a performance penalty for it, as the language is statically typed and compiled.
link|improve this answer
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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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