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