This document is made of modules of different types, which offer the ideal amount of flexibility for a wide range of content. For example, this paragraph is a text module.
Select an answer...
To get a version of this document that you can edit, sign in in the top right then click "Make a copy."
Now, try double-clicking this module to edit it! Text modules support GitHub Flavored Markdown...
You can also upload custom images:
And include code blocks
:
1def fibonacci(n):
2 if n <= 1:
3 return 1
4 return fibonacci(n - 1) + fibonacci(n - 2)
For a real-world use case, check out this example lesson on vector fields.