import marimo

__generated_with = "0.0.0"
app = marimo.App()


@app.cell
def _():
    """Documentation in pypercent format."""
    return


@app.cell(hide_code=True)
def _(mo):
    mo.md(r"""
    Introduction
    This is a documentation file.
    """)
    return


@app.cell(hide_code=True)
def _(mo):
    mo.md(r"""
    Usage
    Here's how to use this module.
    """)
    return


@app.cell
def _():
    import marimo as mo
    return (mo,)


if __name__ == "__main__":
    app.run()
