Created
November 21, 2025 14:31
-
-
Save manzt/0479597ba5381f650a8e65d1557c34ee to your computer and use it in GitHub Desktop.
test.py
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.17.0", | |
| # "polars", | |
| # "pyzmq", | |
| # ] | |
| # /// | |
| import marimo | |
| __generated_with = "0.17.8" | |
| app = marimo.App() | |
| @app.cell | |
| def _(): | |
| import marimo as mo | |
| slider = mo.ui.slider(0, 10) | |
| slider | |
| return | |
| @app.cell | |
| def _(): | |
| print("hi pj") | |
| return | |
| @app.cell | |
| def _(): | |
| import polars as pl | |
| 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