Skip to content

Instantly share code, notes, and snippets.

@manzt
Created February 27, 2026 21:47
Show Gist options
  • Select an option

  • Save manzt/89e4f17f40c5245f9b9297dc018a8c2b to your computer and use it in GitHub Desktop.

Select an option

Save manzt/89e4f17f40c5245f9b9297dc018a8c2b to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# /// script
# requires-python = ">=3.14"
# dependencies = [
# "marimo>=0.20.2",
# "pyzmq>=27.1.0",
# ]
# ///
import marimo
__generated_with = "0.20.2"
app = marimo.App()
@app.cell
def _(mo):
mo.md(r"""
## Hello
""")
return
@app.cell
def _():
for i in range(10):
print(i)
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