2
votes
2answers
158 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 feature …
0
votes
2answers
51 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 bee …
2
votes
2answers
278 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
Internal …
0
votes
4answers
303 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#.
3
votes
15answers
421 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 …
0
votes
7answers
465 views
Boo vs C# vs Python? [closed]
I was (yes, was) a Python (and before VB6) lover until tried to create GUI applications. It is very (very) difficult to create a GUI, and making executables (A hello world app was …
12
votes
13answers
1k 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 (pr …
1
vote
2answers
76 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?
1
vote
2answers
102 views
Generics in Boo - Is there an equivalent of the C# where clause
Is there a way in Boo to express some constaints on generic types as we can do using the where clause in C#?
In short, how to write?:
class MyClass<T>
where T:Icomparab …
6
votes
8answers
867 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 (b …
0
votes
1answer
86 views
Opensource projects using BOO
I am trying to learn BOO and think the best way to go about do it is to write some code :)
I have searched high and low to find some OSS project in BOO, to which I can contribute.
…
1
vote
2answers
94 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
4answers
283 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?
1
vote
2answers
86 views
How can I create a dispatch table in Boo?
I'd like to be able to store a function in a hashtable. I can create a map like:
hash = {}
hash["one"] = def():
print "one got called"
But I'm not able to call it:
func = ha …
2
votes
3answers
281 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 implemen …
