import marimo


app = marimo.App()


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


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

