This post was written in AsciiDoc with syntax highlighting.
def fib(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b # classic
return a
| Note |
Code blocks travel into the RSS feed with inline styles. |
| Format | Highlighted |
|---|---|
AsciiDoc |
Yes |