The documentation suggests Python functions can be exported but this simple example doesn't seem to work
```{pyodide}
#| define:
#| - hello
def hello():
return "hello world"
```
```{ojs}
hello()
```
I get TypeError: hello is not a function. Any ideas?