(no title)
dmadisetti | 4 months ago
```python
@app.cell
def my_cell():
x : int = 1
return (x,)
@app.cell
def consumer(x : int):
y = x
return
```
We've talked about building out implicit typing into our serialization- but that may be a larger can of worms.
sixo|4 months ago
dmadisetti|4 months ago