Created
February 27, 2026 21:42
-
-
Save manzt/33d6c3fdb464417c2f5d259977df1248 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /// 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