When using hotValues I can collect using "(1 to: 9) collect: [ :i | !fader suffix: i]".
But how can I do that with variables either in a smalltalk script or in a tool? There's also the way to use "('fader' suffix: i) asHotValue" so I can use Strings but there's no "asVariable" message.
In short: how can I collect the variables x1, x2 and x3?
Thanks!