资 源 简 介
Heading1
Heading2
Heading3
bold italic
inline code
escape: *
Indent lists 2 spaces:
* bullet item
1. numbered list
Horizontal rule
WikiWordLink
label
http://domain/page
| table | cells |
|:------|:------|
def fib(n): if n == 0 or n == 1: return n else: # This recursion is not good for large numbers. return fib(n-1) + fib(n-2)