import marimo

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


@app.cell
def _():
    """Pypercent format notebook."""

    import numpy as np
    return (np,)


@app.cell(hide_code=True)
def _(mo):
    mo.md(r"""
    This is a markdown cell
    with multiple lines
    """)
    return


@app.cell(hide_code=True)
def _(mo):
    mo.md(r"""
    This is a doc string, but also markdown
    """)
    return


@app.cell
def _(np):
    # First code cell
    x = np.array([1, 2, 3])
    print(x)
    return (x,)


@app.cell
def _(x):
    # Cell with title
    y = x * 2
    print(y)
    return


@app.cell
def _():
    import marimo as mo
    return (mo,)


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