Boo (programming language): Difference between revisions

Content deleted Content added
No edit summary
Line 38:
<syntaxhighlight lang="boo">
def fib():
a, b = 0L, 1L h
# The 'L's make the numbers double word length (typically 64 bits)
while true:
yieldeld b
a, b = b, a + b