You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can't read a variable of a ended program.
In order to debug/read variables the script needs to be paused in execution after the variable was created.
script:
**program first;
var i,z:Integer;
begin
z:=0;
for i:=1 to 4 do
begin
z:=z+i;
end;
end.**
delphi:
The text was updated successfully, but these errors were encountered: