Share on Facebook Share on Twitter Email
Answers.com

Boo

 
Wikipedia: Boo (programming language)
Boo
BooLogo.png
Paradigm Object oriented
Appeared in 2003
Designed by Rodrigo B. De Oliveira
Developer Rodrigo B. De Oliveira
Stable release 0.9.2 (2009-09-01)
Typing discipline static, strong, duck
Influenced by Python
OS .NET Framework, Mono Runtime
License MIT/BSD style license
Website boo.codehaus.org

Boo is an object oriented, statically typed programming language in active development since 2003, which seeks to make use of the Common Language Infrastructure's support for Unicode, internationalization and web applications, while using a Python-inspired syntax[1] 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 is free software released under an MIT/BSD–style license. It is compatible with both the Microsoft .NET and Mono frameworks.

Contents

Code samples

Hello world program

print "Hello, world!"

Fibonacci series generator function

def fib():
    a, b = 0L, 1L       #The 'L's make the numbers 64-bit
    while true:
        yield b
        a, b = b, a + b
 
# Print the first 5 numbers in the series:
for index as int, element in zip(range(5), fib()):
    print("${index+1}: ${element}")

See also

References

  1. ^ Rodrigo Barreto de Oliveira (2005). "The boo Programming Language" (PDF). http://boo.codehaus.org/BooManifesto.pdf. Retrieved February 22, 2009. 

External links


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics
 
 
Learn More
cheer
burro (culinary)
caribou (culinary)

When is Boo Boo Stewart's birthday? Read answer...
How old is Boo-Boo Stewart? Read answer...
Is boo boo stewert cool? Read answer...

Help us answer these
How do you say boo boo in spanish?
What is boo boo's number?
Is Boo Boo Stewart ticklish?

Post a question - any question - to the WikiAnswers community:

 

Copyrights:

Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Boo (programming language)" Read more