{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Exploring `fml_doc_gen`" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's say you have the following function you want to generate the documentation for:" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "def square(base: int, pow: int) -> int:\n", " return base ** pow" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "