Boo (programming language): Difference between revisions

Content deleted Content added
m Woops
Line 27:
== Code samples ==
=== Hello world program ===
<source lang="pythonboo">
print "Hello, world!"
</source>
Line 33:
=== Fibonacci series generator function ===
 
<source lang="pythonboo">
def fib():
a, b = 0L, 1L #The 'L's make the numbers double word length (typically 64 bits)