mo.Thread
? Any clue about it?import marimo __generated_with = "0.9.25" app = marimo.App() @app.cell def __(): import marimo as mo return (mo,) @app.cell def __(): def foo(): print("hi") return (foo,) @app.cell def __(foo, mo): with mo.redirect_stdout(): mo.Thread(target=foo).start() return if __name__ == "__main__": app.run()