- Chapter
- Chapter 2
The First Chapter
A sample chapter
This chapter demonstrates how content flows. Mix prose with display math:
And code blocks:
def fib(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
Write the next chapter by adding a new .mdx file in data/book/ with an order greater than this one.
You're all caught up. Subscribe to get the next chapter in your inbox.
Comments
Loading comments…