const options = [1, 2, 3];
aexpr(() => {
let x = 0;
/**/for(const y of options) {
x += y;
}/*/
for(let i = 0; i < options.length; i++) {
x += options[i];
}/**/
lively.notify("x: " + x);
return x;
}).onChange(lively.notify);
options[0]++;
options.values()```