Boo (programming language): Difference between revisions

Content deleted Content added
WPWoodJr (talk | contribs)
Added link to boo homepage
 
WPWoodJr (talk | contribs)
added info about boo
Line 1:
Boo is a new (2004) 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. Features of note include [[generator]]s, [[multimethods]], optional [[duck typing]], [[macro]]s, and first class functions.
http://boo.codehaus.org
 
Boo is open source boo licensed under an MIT/BSD style license and is maintained at http://boo.codehaus.org
 
Hello World:
:print("Hello, world!")
 
:Fibonacci Series:
:def fib():
::a as long, b as long = 0, 1
::while true:
:::yield b
:::a, b = b, a + b