Right now, after you created a Container, you can assign modules at a later time to it like this: ``` python container.add_module('linear', nn.Linear()) ``` Instead, also allow this simpler interface: ``` python container.linear = nn.Linear() ```