import marimo

app = marimo.App()


@app.cell
def _():
    x = 0
    x
    return (x,)


@app.cell
def _(x):
    x + 1
    return


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