Content deleted Content added
m →Syntax |
|||
Line 36:
<syntaxhighlight lang="boo">
def fib():
a, b = 0L, 1L
# The 'L's make the numbers double word length (typically 64 bits)
while true:
|
m →Syntax |
|||
Line 36:
<syntaxhighlight lang="boo">
def fib():
a, b = 0L, 1L
# The 'L's make the numbers double word length (typically 64 bits)
while true:
|