Hi! this is the first time I use Smalltalk. I created a class called Celd and I wanted to create a class called Matrix which will be a 2D-array of Celd or a Matrix if you prefere.<br><br>Could someone help me with the code?<br>
<br>I tried this:<br><br>Object subclass: #Matrix<br>    instanceVariableNames: &#39;cells range&#39;<br>    classVariableNames: &#39;&#39;<br>    poolDictionaries: &#39;&#39;<br>    category: &#39;fiuba-explorador&#39;<br>
<br>initialize<br>    &quot;Inicializa por defecto&quot;<br>    cells := Celd new.<br>    range := 6<br><br><br>But when I try to add a Cell... I can&#39;t thank you very much in advance.<br><br>Gabriel<br>