```python from wypp import * @record class Item: name: str item1 = Item('foo') @record class Items: items: list[Item] sampleInvoice = Items([item1]) print(sampleInvoice) ``` When stepping through the above program, the visualization looks like this: <img width="942" alt="Bildschirmfoto 2024-11-22 um 15 35 57" src="https://github.com/user-attachments/assets/981bb217-d347-46db-8dcb-28448181e5de"> We should be more clever and place the list between Item and Items
When stepping through the above program, the visualization looks like this:
We should be more clever and place the list between Item and Items