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()
