Boo (programming language): Difference between revisions

Content deleted Content added
m c/e
Line 27:
Boo is [[free software]] released under the [[BSD licenses|BSD 3-Clause license]]. It is compatible with the [[Microsoft]] [[.NET Framework|.NET]] and [[Mono (software)|Mono]] frameworks.
 
== Code samplesSyntax ==
{{rewrite|section}}
 
=== Hello world program ===
<syntaxhighlight lang="boo">
print ("Hello World")
</syntaxhighlight>
 
=== Fibonacci series generator function ===
<syntaxhighlight lang="boo">
def fib():