Tip: paste this code into an empty cell, and the marimo editor will create cells for you
import marimo
__generated_with = "0.17.4"
app = marimo.App()
@app.cell(hide_code=True)
def _(mo):
mo.md(r"""
Use colon syntax as a shortcut for **emojis** in your markdown.
""")
return
@app.cell
def _(mo):
mo.md(r"""
:rocket: :smile:
""")
return
@app.cell
def _():
import marimo as mo
return (mo,)
if __name__ == "__main__":
app.run()