Questions tagged [boo]

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.

Boo is an open source, 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.

Some features of note include type inference, generators, multimethods, optional duck typing, macros, true closures, currying, and first-class functions. Boo has been actively developed since 2003.

131 questions
0
votes
0 answers

How do you set attributes in Boo Lang

How would you write the following code in Boo? // Armor.cs using Parse; [ParseClassName("Armor")] public class Armor : ParseObject { }
Diego Dorado
  • 398
  • 4
  • 12
0
votes
1 answer

Syntax Highlighting in Sublime Text 2 (Boo)

I installed this through Package Control in ST2. However, when I am coding in a .boo file, it doesn't use the syntax highlighting (although it did find booc.exe, I can select it as a Build option and it compiles). I am new to the program so I've had…
0
votes
2 answers

Emacs: Altering python.el indentation in derived mode

I am attempting to derive a new emacs mode from python.el (the current official gnu one) for Boo and I am having trouble with altering the indentation. Does anyone have any suggestions about how to best handle this? I do not need to change anything…
cacti
  • 475
  • 3
  • 15
0
votes
1 answer

Boo Constructor Chaining

In C# when I want to chain constructors together I'd do this... public class OperationMacro : GeneratePropertyMacro { public OperationMacro() : base("Operation") { //Whatever else I need to do... } } What is the equivalent syntax in…
Restore the Data Dumps
  • 38,967
  • 12
  • 96
  • 122
0
votes
2 answers

Bootstrap alert is only working one time

i am working on a web app in which after submit it calls a ajax page.Now if email is already present then it will throw alert.For this purpose I am doing bootstrap alert.But its working for the first time.Please see this bootply, When you press the…
SpringLearner
  • 13,738
  • 20
  • 78
  • 116
0
votes
1 answer

How do you load an assembly in boo

I'm trying to use the .NET assembly Microsoft.VisualBasic in my boo code that looks like this: import System import Regex from System.Text.RegularExpressions import Interaction from Microsoft.VisualBasic import Microsoft.VisualBasic ## import…
Plakhoy
  • 1,846
  • 1
  • 18
  • 30
0
votes
1 answer

array of class in boo, unable to access properties

So I've created a class in boo that has three properties, Name as string, required as bool, read as bool. Then Im going to create a method(SetDefault) that goes through the array of this type and sets all required properties back to true, and read…
0
votes
1 answer

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, height) The best overload for the method…
andyhasit
  • 14,137
  • 7
  • 49
  • 51
0
votes
1 answer

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 to start using Boo as an scripting language which…
Kat Lim Ruiz
  • 2,425
  • 2
  • 26
  • 32
0
votes
1 answer

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 has some support in Mono…
ngm
  • 7,277
  • 1
  • 53
  • 62
-1
votes
2 answers

unityscript, c#, boo together in unity?

Is it possible to use unityscript 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 and some others in js. So I will suggest unity…
Emre Canbazoğlu
  • 113
  • 3
  • 13
1 2 3
8
9