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
This program reports line 0 and 4 if ".so" is applied
pro doit
stop
print,'5'
while 1 do begin & endwhile
end
GDL> .so
5
% Stepped to: DOIT 4 /home/chris/doit.pro
GDL> .so
% Stepped to: DOIT 0 /home/chris/doit.pro
GDL> .so
% Stepped to: DOIT 4 /home/chris/doit.pro
GDL> .so
% Stepped to: DOIT 0 /home/chris/doit.pro
If the while loop contains any command then the reported line is ok:
pro doit
stop
print,'5'
while 1 do begin & wait,0.1 & endwhile
end
GDL> .so
5
% Stepped to: DOIT 4 /home/chris/doit.pro
GDL> .so
% Stepped to: DOIT 4 /home/chris/doit.pro
GDL> .so
% Stepped to: DOIT 4 /home/chris/doit.pro
The text was updated successfully, but these errors were encountered:
This program reports line 0 and 4 if ".so" is applied
If the while loop contains any command then the reported line is ok:
The text was updated successfully, but these errors were encountered: