import marimo

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


@app.cell(hide_code=True)
def _(mo):
    mo.md(r"""
    # My Notebook
    """)
    return


@app.cell
def _():
    print("Hello, World!")
    return


@app.cell(hide_code=True)
def _(mo):
    mo.md(r"""
    **Appendix**
    - This is the end of the notebook
    """)
    return


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