Boo is an amazing language that combines the syntactic sugar of Python, the features of Ruby, and the speed and safety of C#.
Like C#, Boo is a statically-typed language, which means that types are important. This adds a degree of safety that Python and other dynamically-typed languages do not currently provide.
It fakes being a dynamically-typed language by inference. This makes it seem much like Python's simple and programmer-friendly syntax.
int i = 0; MyClass m = new MyClass(); |
i = 0 m = MyClass() |
A Hello, World! program is very simple in Boo.
Don't worry if you don't understand it, I'll go through it one step at a time.
print "Hello, World!"
// OR
print("Hello, World!")
|
Hello, World! Hello, World! |
helloworld.boo file to an executable.
cd into the directory where you placed the helloworld.boo file.booc helloworld.boo (this assumes that Boo is installed and in your system path)helloworld.exemono helloworld.exeNow these both in the end, do the same thing. They both call System.Console.WriteLine("Hello, World") from the .NET Standard Library.
|
Using the macro version ( |
And it's that simple.
Now you may be wondering how Boo could be as fast as C# or VB.NET.
Using their Hello World programs, I'll show you.
print "Hello, World!" |
Hello, World! |
public class Hello
{
public static void Main()
{
System.Console.WriteLine("Hello World!");
}
}
|
Hello, World! |
Public Class Hello
Public Shared Sub Main()
System.Console.WriteLine("Hello World!")
End Sub
End Class
|
Hello, World! |
All three have the same end result and all three are run in the .NET Framework.
All three are first translated into MSIL, then into executable files.

If you were to take the executables created by their compilers, and disassemble them with ildasm.exe, you would see a very similar end result, which means that the executables themselves are very similar, so the speed between C# and Boo is practically the same, it just takes less time to write the Boo code.
booish is a command line utility that provides a realtime environment to code boo in. It is great for testing purposes, and I recommend following along for the next few pages by trying out a few things in booish.
You can invoke it by loading up a terminal, then typing booish (this assumes that Boo is installed and in your system path), or by double-clicking the booish icon. In booish, you can up arrow to re-enter (with editing) a previously entered line.
Here's what booish will look like:
>>> print "Hello, World!" Hello, World! >>> |
booishbooc) and C# (using csc or mcs), run ildasm on each of them and compare the result.Go on to Part 02 - Variables