#!/usr/bin/env python
# and some other random stuff

import marimo

__generated_with = "0.0.0"
app = marimo.App(app_title="My Title")


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


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


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