Skip to content

Instantly share code, notes, and snippets.

@manzt
Created September 30, 2025 20:51
Show Gist options
  • Save manzt/e58cbd4336a062704f3f6b8569429fb4 to your computer and use it in GitHub Desktop.
Save manzt/e58cbd4336a062704f3f6b8569429fb4 to your computer and use it in GitHub Desktop.
foo_mo.py
import marimo
__generated_with = "0.16.2"
app = marimo.App()
@app.cell
def _():
import marimo as mo
mo
return (mo,)
@app.cell
def _(mo):
slider = mo.ui.slider(0, 10)
slider
return (slider,)
@app.cell
def _(slider):
slider
return
@app.cell
def _(slider):
slider
return
@app.cell
def _():
return
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment