idea, refresh menu variables when running worksheet
Publié : sam. sept. 23, 2017 8:44 pm
The menu show list variables [var] is not updated when the worksheet is re-execute
1:
x:=3;
f():={
x:=x+1;
return x;
}:; [enter]
3,"Done"
2:
f(); [enter]
4 [enter] // x=3
5 [enter] // x=4
6 // x=5
var is always in the value of 3, x=3, and even when a session is changed or a new one is generated the menu bar of variables remains.
1:
x:=3;
f():={
x:=x+1;
return x;
}:; [enter]
3,"Done"
2:
f(); [enter]
4 [enter] // x=3
5 [enter] // x=4
6 // x=5
var is always in the value of 3, x=3, and even when a session is changed or a new one is generated the menu bar of variables remains.