<div dir="ltr"><div><span style="color:rgb(0,0,0);background-color:rgb(255,255,255);font-family:arial,sans-serif">The implementation in the base image</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255);font-family:arial,sans-serif"> sends the message </span><span style="font-family:monospace"><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">#'printStringBase:' </span></span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255);font-family:arial,sans-serif">that is not implemented.</span><span style="font-family:monospace"></span></div><div><span style="font-family:arial,sans-serif">To reproduce evaluate something like:<br></span></div><div><span style="font-family:monospace"><br></span></div><div><span style="font-family:monospace"><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">UUID new asString36</span></span></div><div><span style="font-family:monospace"></span></div><div><br></div><div>The fix is straightforward using <span style="font-family:monospace">printStringRadix:</span> instead</div><div><br></div><div><div style="color:rgb(204,204,204);background-color:rgb(31,31,31);font-family:"Droid Sans Mono","monospace",monospace;font-weight:normal;font-size:14px;line-height:19px;white-space:pre"><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">asString36</span></div><span style="background-color:rgb(0,0,0)"><br></span><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">  | num candidate |</span></div><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">  num := 0.</span></div><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">  1 to: self size do: [:i | num := num + ((256 raisedTo: i - 1) * (self at: i))].</span></div><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">  candidate := num printStringRadix:  36.</span></div><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">  ^((candidate beginsWith: '36r')</span></div><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">      ifTrue: [candidate copyFrom: 4 to: candidate size]</span></div><div><span style="color:rgb(206,145,120);background-color:rgb(0,0,0)">      ifFalse: [candidate]) asLowercase</span></div></div></div><div><br></div><div>Regards,</div><div>Gabriel<br></div></div>