[ List ] put: [ Object ] at: [ Object ]

var x := List new.
x put: ['aaa'] at: ['bbb'].
Pen write: x, stop.
(List new) put:['aaa'] at:['bbb']