boo Questions
12
Solved
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...
9
Solved
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...
15
Solved
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 creat...
Lindeman asked 22/9, 2008 at 18:34
5
Solved
I am starting with game dev using Unity3d and I can see there's 3 supported languages for creating scripts: C#, unityscript and Boo...
although, coming from a web-design past I am obviously used w...
Tele asked 26/2, 2012 at 11:57
2
Solved
scripts/ai/Dream.boo
import CultLib
import LonelyHero
class Dream(Enemy):
pass
C#
var bc = new BooCompiler();
bc.Parameters.Input.Add(new FileInput("rsc/script/ai/" + "Dream" + ".boo"));
bc.P...
Steve asked 19/12, 2012 at 5:32
2
Solved
In classes whose instances I persist using an object database, I keep having to do this:
private string _name;
public string Name
{
get { return this._name; }
set { _name = value; this.Save(); ...
Goulet asked 8/8, 2012 at 16:21
5
Solved
Is there a way to use boo in my msvs? I would like my form to call some boo code instead of C#.
Gyrate asked 10/4, 2009 at 16:53
6
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...
Nagari asked 15/10, 2008 at 21:16
8
Solved
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 d...
Weasand asked 5/10, 2008 at 22:54
10
Solved
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...
2
Solved
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 m...
Emmett asked 1/1, 2011 at 20:10
2
Solved
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 stuf...
Fishbein asked 23/12, 2010 at 1:20
5
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?
...
Kezer asked 7/9, 2010 at 2:8
3
Solved
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?
Ensconce asked 15/2, 2010 at 10:33
4
Solved
What is the difference between IronPython and BOO? Is there a need for 2 Python-like languages?
Cirenaica asked 1/3, 2009 at 21:17
4
Solved
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 woul...
Discriminating asked 13/1, 2010 at 16:24
5
Solved
Compared to C#, Boo feels a bit more Pythonic but it's also compiled down to .NET MSIL. I liked its syntax, even more than C#'s syntax. But I couldn't find a single book teaching Boo.
And I ...
Legality asked 6/10, 2009 at 9:47
4
Solved
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?
Agiotage asked 17/7, 2009 at 19:40
3
Solved
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 e...
1
Solved
Ruby has method_missing , Python has getattr. Does Boo offer something I can use to intercept method calls?
E asked 18/7, 2009 at 14:13
3
Solved
Possible Duplicates:
BOO Vs IronPython
Boo vs. IronPython
Say you want to embed a scripting language into a .NET application.
Boo is modelled on Python syntax, but also includes type ...
Metro asked 20/5, 2009 at 21:46
7
Solved
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 libra...
Inanna asked 11/10, 2008 at 8:44
1
Solved
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?
6
Solved
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;
This will run ver...
Helotry asked 22/9, 2008 at 21:24
2
Solved
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 proj...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.