Tagged Questions
Boo is an object oriented, statically typed programming language for the Common Language Infrastructure, with a Python-inspired syntax and a special focus on language and compiler extensibility.
21
votes
10answers
5k views
Who is using Boo (programming language)?
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?
17
votes
7answers
4k views
Boo vs. IronPython
After having looked at each of these two projects, it seems that both are VERY similar. Both run on top of the CLI, both have python style syntax, both use .NET instead of the standard python ...
16
votes
13answers
2k views
Best non-C++ language for generative programming?
C++ is probably the most popular language for static metaprogramming and Java doesn't support it.
Are there any other languages besides C++ that support generative programming (programs that create ...
14
votes
4answers
2k views
BOO Vs IronPython
What is the difference between IronPython and BOO? Is there a need for 2 Python-like languages?
14
votes
8answers
2k views
What's the point of the var keyword?
The var keyword does away with the need for an explicit type declaration and I have read with interest the SO discussion of when it might be appropriate.
I have also read about (but not used) Boo ...
13
votes
3answers
1k views
Are there non-CLI implementations (esp, JVM) of the Boo programming language?
Boo looks like an interesting language, but it appears to be implemented only for the Common Language Infrastructure (CLI), AKA .NET -- at least, I haven't found any other implementation, and I'd ...
12
votes
5answers
5k views
Which programming language(s) does Windows Phone 7 (WP7) support?
As I recall, WP7 supports C# but does not support any of the .Net dynamic languages (Ruby or Python). Are any other programming languages besides C# supported? Could an app be developed using Boo?
11
votes
10answers
602 views
When is a new language the right tool for the job?
For a long time I've been trying different languages to find the feature-set I want and I've not been able to find it. I have languages that fit decently for various projects of mine, but I've come ...
9
votes
9answers
893 views
Good dynamic programming language for .net recommendation
Well, after a long time writing .net programs in C# I started to feel angry and frustrated about all that syntactic trash that comes with statically typed languages. Now I want to change to ...
8
votes
1answer
795 views
Lambdas in Boo?
How do you deal with lambdas in boo? Is "callable" the same thing? How do you define a method that takes a lambda as a parameter?
7
votes
5answers
1k views
Is it possible to save a dynamic assembly to disk?
I recently bought Ayende's book Building DSLs in Boo (buy it, read it, it's awesome) but I'm coming up against an implementation problem and I want to see what the generated code looks like. I would ...
7
votes
6answers
1k views
What can BOO do for you?
trying to get a side project hobby going to keep me motivated from my 9-5 job on C# and was looking at Boo. some ?'s
what has your experience being with Boo?
what kind of apps/projects have you done ...
6
votes
2answers
642 views
How do I configure an ASP.NET MVC project to work with Boo
I want to build an ASP.NET MVC application with Boo instead of C#. If you know the steps to configure this type of project setup, I'd be interested to know what I need to do.
The MVC project setup ...
6
votes
2answers
1k views
Is anybody using the Specter BDD Framework?
I was reading the example chapter from the book by Ayende and on the website of the Boo language I saw a reference to the Specter BDD Framework.
I am wondering if anybody is using it in their ...
5
votes
3answers
432 views
How stable and mature is Boo?
I had a look at Boo and it looks pretty awesome! I'm just curious about how stable it is at this stage? I mean, would you consider using it in real live production code?
5
votes
17answers
857 views
Best language for introductory “higher level” programming course
My CS department is currently considering a new introductory "high level" programming course. It is partly aimed at non-majors or those with other primary majors that will find it useful to build ...
5
votes
4answers
378 views
Is there a way to verify that code will work on the 360 while doing XNA dev?
I'm working on a casual game on XNA with the intention of deploying to the Xbox 360. I'm not going to have access to hardware for a few weeks and I'm on a tight deadline, so I'd like to test that a ...
4
votes
2answers
147 views
Delete a variable in boo
I know that the similarities between boo and Python are only superficial, but still, how can I do an equivalent of the following Python code in boo?
a = 'a'
del a
a = 1
I've tried
a = 'a'
a = null
...
4
votes
2answers
84 views
Method chaining on a new line in boo
Is it possible to make method chaining in a new line, like you can do in C#?
var foo = bar
.MethodOne()
.MethodTwo()
4
votes
2answers
601 views
What are the differences between Boo vs Nemerle?
It looks like both of these languages are dubbed as "what C# should have been", with hygenic macros, REPL, Compiler as a Serivce (CaaS), static + duck typing (way before C# had it). Are there any ...
4
votes
2answers
321 views
The DLR, Boo, and the JVM
I'm just starting to try to learn more about the .Net VM underpinnings, and am immediately thrown off by something. I know there's this new thing called the DLR that allows for all the dynamic stuff ...
4
votes
3answers
210 views
How do I manage application configuration in ASP.NET?
I am having difficulty with managing configuration of an ASP.Net application to deploy for different clients. The sheer volume of different settings which need twiddling takes up large amounts of ...
4
votes
4answers
397 views
A guide to Boo's metaprogramming and extensibility features?
I'm interested in learning about Boo's more powerful features such as syntactic macros, parser support (Ometa?), compiler pipeline, etc. My impression is that these areas have been in flux and ...
4
votes
1answer
294 views
How can I intercept a method call in Boo?
Ruby has method_missing , Python has getattr. Does Boo offer something I can use to intercept method calls?
4
votes
4answers
987 views
Is Boo 100% C# compatible?
Boo seems like a very cool language. Is it 100% C# compatible? I mean: can I use any C# DLL/class? Could I make use of the XNA framework?
4
votes
4answers
1k views
Boo in Visual Studio?
Is there a way to use boo in my msvs? I would like my form to call some boo code instead of C#.
4
votes
11answers
3k views
What technology to use in creating DSL for rules engine?
What technology would you recommend to create a DSL for a Business Rules and Validation Application Block for .NET? And why?
The architecture of the framework is established and proof-tested by a ...
4
votes
6answers
3k views
Can you do LINQ-like queries in a language like Python or Boo?
Take this simple C# LINQ query, and imagine that 'db.Numbers' is an SQL table with one column, Number:
var result =
from n in db.Numbers
where n.Number < 5
select n.Number;
...
3
votes
1answer
99 views
Is WSA compiler in BOO safe to use?
In our program we use boo as macro system about 2 years. All works like a charm, but python syntax is weird for newcomers. As I know boo has white space agnostic (WSA) compiler with ruby like syntax:
...
3
votes
1answer
267 views
Boo - Excel Automation, trouble selecting ranges
I'm investigating Boo and thought it would be a useful exercise to try converting a couple of venerable VB Scripts that automate Excel (2007, in this instance). A lot of things seem to translate very ...
3
votes
2answers
269 views
What is a real-world application for HORN?
I've been hearing a bit about HORN lately, and wonder what problems it can solve or how a real life situation of using it is beneficial.
http://code.google.com/p/hornget/
3
votes
1answer
476 views
Difficult boo syntactic macro
I'm creating a DSL for an extensible card game engine I'm working on, with boo.
I have a card macro that creates a class for a new type of card, and initializes some properties in the constructor. ...
3
votes
1answer
236 views
In Boo, how do I specify an array parameter?
In Boo, let's say I'm overriding a method that takes a parameter that takes string[] urls. Type inference, for whatever reason, isn't matching up to the base class, so I need to explicitly specify the ...
3
votes
4answers
672 views
Strange boo language syntax
I've run into a strange syntax in Boo Language Guide :
setter = { value | a = value }
What does the | operator mean?
2
votes
2answers
304 views
How can i use Extension Methods in boo
I have a list in my boo script and want to use System.Linq Extension Methods but boo compiler throw this Exception:
BCE0019: Boo.Lang.Compiler.CompilerError: 'ToList' is not a member of
...
2
votes
2answers
920 views
How can I import the System.Linq namespace to Boo?
When I try to import the System.Linq namespace to Boo compiler, I get this error:
Boo.Lang.Compiler.CompilerError:
Namespace 'System.Linq' not found, maybe you forgot to add an assembly ...
2
votes
0answers
63 views
Reusable nested macro in boo?
I am writing a DSL using boo and I would like to keep it as DRY as possible. I was wondering if there is any way to reuse nested macro. E.g. in
topmacro1:
submacro:
topmacro1['submacro'] ...
2
votes
0answers
104 views
Race condition in Rhino DSL?
In my current project I am working with Boo/Rhino DSL (what a great thing(s) by the way).
In digging in the code I came across the following piece of code:
engine.Cache.WriteLock( () =>
{
...
2
votes
2answers
220 views
2
votes
4answers
150 views
How to make a text box in a command line window?
I'm working with .NET (specifically Boo, but answers would work in C# too) and I want to know how I could create an editable box inside the command line, such that I could display a section of output ...
2
votes
2answers
110 views
How to escape identifiers in Boo?
If I have an identifier with a same name as existing keyword, how do I escape it?
2
votes
2answers
254 views
Boo Reference Card?
I'm looking for a boo syntax sheet/reference card. A quick search on google and on boo's site didn't turn up anything, does anyone know where one is?
2
votes
3answers
363 views
Is Boo a good choice for writing unit tests?
I'm developing in C# on the Castle stack. I'm new to unit testing, and I've heard that a more flexible language (than C#) might make writing tests easier.
Do you think it is worth the time to learn ...
2
votes
2answers
284 views
How do I add a language keyword in BOO to let 'when' behave as an 'if'
I cannot seem to figure out how I can add the 'when' keyword to BOO which should behave as an 'if'. I figure I could make a method, but then I cannot move the when around like I can with if. Any ...
2
votes
1answer
557 views
Internals visible to Boo (Binsor)
I am using Castle Windsor for IoC and I want to use Binsor to define my configuration.
I want to let my internals be visible to Boo. I have tried to mark my assembly with
...
2
votes
1answer
162 views
Where to find like-minded FOSS developers?
I have started work on an open-source project and I'd like to find related projects and people that want to work on something similar. Is there a site for finding such people?
The idea is a ...
2
votes
2answers
343 views
Has anbody used Boo and can you comment on your experiences?
I'm looking for a groovy equivalent on .NET
http://boo.codehaus.org/
So far Boo looks interesting, but it is statically typed, yet does include some of the metaprogramming features I'd be looking ...
1
vote
1answer
36 views
Boo - preventing arbitrary imports
I am currently assessing application scripting language candidates for hosting within a .Net application and have come across Boo. However I am struggling to see from the documentation if there is ...
1
vote
0answers
37 views
Declare a global variable in boo
As far as I can tell from the website, the following code should compile to a DLL with a top-level property Version:
namespace MyLibrary
[Module]
class MainClass:
public static Version as string
...
1
vote
1answer
69 views
Boo ASP.NET MVC template
I've been searching around for a way to use Boo in ASP.NET MVC project. What I would like is a way to easily create an MVC project with Boo, like the included templates that the MVC project has for C# ...