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:
a, b = b, a + b
|
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:
a, b = b, a + b
|