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.

learn more… | top users | synonyms

0
votes
1answer
65 views

Does BOO run on WinRT (Windows 8 Apps)?

Can I compile BOO on WinRT for a Windows 8 App? Have you tried?
2
votes
5answers
58 views

Does .Net have a enum of chars available

I'm just wondering whether .Net has a built-in enum of chars anywhere. I'm just parsing a CSV file and it occured to me I'd like to be able to do something like: line.Split(Chars.Comma) instead ...
3
votes
0answers
90 views

Boo compiler throws “Attempted to read or write protected memory” occasionally

I sometimes get the following exception when compiling the Boo scripts: A unexpexted thing happened, C:\Resources\temp\de4ee12533b34facbb80d007648a48f2.BackendRole\RoleTemp ...
2
votes
1answer
76 views

How to call a function, defined in c# from boo?

I'm using Boo as the script engine in my C# program where I need to run user-defined scripts. How can I call a function which is defined in my C# code, from inside the Boo script?
4
votes
2answers
134 views

Converting an array of 2 consecutive bytes to integers faster

I have a 'huge' amount of data, which may vary between 50 and 100 MegaBytes. I read this data in as an array of bytes using a filestreamer. The thing is, I want to convert all consecutive 2 bytes ...
0
votes
0answers
39 views

DLLS built using C# failing to import properly in Boo

I'm attempting to create a plugin for a C# program using Boo. The Boo scripts will be compiled into a DLL and loaded by the C# program to be used. I'm referencing a two DLLs made with C# (also ...
7
votes
2answers
205 views

Embedding boo in C#, does not recognise executing assembly

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")); ...
0
votes
0answers
69 views

What are the key differences and pitfalls to look out for between Python and Boo? [closed]

Background: I use python a lot, and have dabbled in C++, but in Unity, the only languages allowed are C#, JavaScript and Boo. I really like Python, and have heard that Boo is very pythonesque, so I am ...
1
vote
1answer
91 views

Eval result with embedding Boo in C#

I try to embed Boo language in a C# project. The simple code is as follows: var interpreter = new InteractiveInterpreter(); interpreter.Declare("Message", typeof(string)); ...
3
votes
2answers
113 views

Generate custom setter using attributes

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; ...
0
votes
0answers
35 views

How do I use Brail and Linq with Castle MonoRail2?

I've tried this... <?brail import System.Linq.Enumerable from System.Core bar = ("foo", "baz") Output bar.Where({x as string | x == "baz"}).Single() ?> errors... 'Where' is not a member of ...
1
vote
1answer
89 views

Alternative of out keyword in boo language

I want to use out keyword in boo language but there is no option related to this keyword. how it can be used in boo language.
0
votes
1answer
154 views

Issue with Microsoft.Office.Core method signatures

I am getting the following error when compiling a Boo project which uses interop: textbox = _ActiveWorkSheet.Shapes.AddTextbox(MsoTextOrientation.msoTextOrientationHorizontal, left, top, width, ...
0
votes
1answer
88 views

Boo Interpreter Speed - Web application

I tried looking for a similar question, but couldn't find one. I have a ASPNET1.1 web application that is business-oriented. And there are many rules which are hardcoded in the application. I want ...
0
votes
1answer
80 views

Does Phantom build system work under Mono?

I'm looking at cross-platform build systems for .Net projects. Phantom looks interesting, however I'm wondering if it will work OK on Linux with Mono. It is built on top of Boo. It seems like Boo ...
0
votes
1answer
55 views

Create a List of a certain type in Boo

I tried public class Chest(Item): public contents as Item But that's of course a single Item, not a list. How do I declare contents as a list of items?
0
votes
1answer
117 views

Using Lists in a C# application through Boo

import EternalDungeon import System.Collections static def PlayerActivate(): for x in range(ED.Mobs.Count): if ED.Mobs(x).Pos == ED.player.SpaceInFront(): ...
3
votes
2answers
804 views

Multithreaded Script invocation in Unity3d

I was trying to implement multithreaded script execution in Unity3d, but it seems that the there is no way provided by Unity libraries and we have to use System.Threading provided by Mono. But they ...
2
votes
4answers
3k views

What is the best script language for Unity3D

I am starting with game dev using Unity3d and I can see there's 3 supported languages for creating scripts: C#, Javascript and Boo... although, coming from a web-design past I am obviously used with ...
2
votes
1answer
61 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 ...
0
votes
1answer
73 views

Is it possible for a c# class to consume a boo macro.ast attribute?

Is it possible to decorate a c# class with an ast attribute or call a macro and interact with the Boo compiler?
1
vote
1answer
138 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 ...
2
votes
1answer
150 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# ...
1
vote
1answer
89 views

Does Boo support DateTime literals?

Does Boo support DateTime literals? Something like this: myDate = #2011/1/1# There is no mention about it on the Boo wiki: http://docs.codehaus.org/display/BOO/Builtin+Literals. Thanks.
1
vote
1answer
337 views

lambda expression in boo

dose boo understand Expression tree? I try to compile this line with sharp develop exp as System.Linq.Expressions.Expression[of Func[of SomeClass, bool]] = { p as Text | return (p.Name == 'tttt') } ...
0
votes
1answer
1k views

Debugging System.TypeLoadException

I'm trying to compile Boo on the mono-4.0 Nant profile and am getting the following error, which I'm having trouble debugging. booi: Invalid type Boo.Lang.Compiler.CompilerParameters for instance ...
4
votes
2answers
195 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 ...
0
votes
2answers
360 views

importing other scripts from Boo script

I'm having trouble referencing other scripts in my unity project from boo scripts. For example, SendMessage is a MonoBehavior I created elsewhere, doing this: import UnityEngine class MissionIcon ...
0
votes
1answer
182 views

inheritance in boo

if boo language is 100% compatible with c#,how can i have inheritance in 2 boo file like two c# class?
1
vote
2answers
159 views

Encoding-free String class for handling bytes? (Or alternative approach)

I have an application converted from Python 2 (where strings are essentially lists of bytes) and I'm using a string as a convenient byte buffer. I am rewriting some of this code in the Boo language ...
4
votes
2answers
122 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()
1
vote
2answers
396 views

How can i use c# dynamic object in boo (Rhino DSL)?

I am using Rhino DSL and when I want to pass a dynamic object into script, boo compiler throws the Exception below: BCE0019: Boo.Lang.Compiler.CompilerError: 'Percent' is not a member of 'object'. my ...
1
vote
1answer
115 views

Operator overloading in Boo - op_NotEqual?

I have an old C# library that I am converting to Boo, and it uses operator overloading. In the interest of not to getting into the why of that, I am looking for a way do the same thing in Boo. This ...
0
votes
1answer
233 views

Type problem with Observable.Create from Boo

I'm trying to use Reactive Extensions from Boo and am running into type problems. Here's the basic example: def OnSubscribe(observer as IObservable[of string]) as callable: print "subscribing" ...
2
votes
2answers
496 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 ...
3
votes
2answers
2k 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 ...
7
votes
2answers
979 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
452 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 ...
0
votes
4answers
198 views

.Net libraries used in any .Net language?

Quick question, I've been reading about some .Net stuff and the way some people talk implies on me that a .Net library could be used with multiple .Net languages. Maybe it's just wishful thinking on ...
2
votes
1answer
97 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'] ...
0
votes
2answers
829 views

javascript, c#, boo together in unity?

Is it possible to use javascript and boo together( in the same project) in unity 3d? We are trying to choose the platform and the engine to develop a game as a group and some coders are good in python ...
2
votes
3answers
187 views

Using Boo in a web app

I am trying to support embedded scripting in an existing web app and would like our users to be able to write Boo scripts using an HTML editor, problem is BOO uses python-like indentation (instead of ...
0
votes
1answer
197 views

Debug Boo in Visual Studio

I just recently played with Rhino DSL and created a simple DSL using Boo. When I debugged my first code I was quite suprised to find out, that while debugging I was actually stepping through the boo ...
2
votes
0answers
216 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( () => { ...
0
votes
1answer
142 views

Isn't a DSL another name for an app which solves a particular problem?

I am learning boo (got the ebook), but one question I have is what exactly is a DSL? Better question, if a DSL is geared towards a specific problem, then isn't it just another name for really an ...
2
votes
2answers
1k views

Optimal language to develop with Unity?

I would like to ask you all about the Unity framework and programming. Unity supports three different languages; Boo, C# and JavaScript. Say you were new to programming and developing on OS X. What ...
1
vote
1answer
169 views

Windows Mobile device states that the assembly System.Windows.Forms 2.0.0.0 cannot be found

I am a newbie to .NET programming and I'm trying to create a simple Windows Forms application for a Windows Mobile device using the .NET Compact Framework 2.0. I develop using Boo and using Nant to ...
16
votes
5answers
13k 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?
1
vote
2answers
418 views

XAML and Boo in Sharpdevelop

I am able to create and run boo console applications in Sharpdevelop. Is there a way to specify the UI using XAML markup and write the code behind in boo for WPF development in Sharpdevelop? If not ...
2
votes
2answers
288 views

Boo, garbage collector

does Boo have a garbage collector? what type?

1 2 3