Closed
Description
I thought this was solved already but I am not sure any more.
This simple program does not compile any more:
pro test
for i=0,5 do begin print,i & endfor
end
It only compiles when there is a "&" after the "begin":
pro test
for i=0,5 do begin & print,i & endfor
end
or when the commands are in different lines:
pro test
for i=0,5 do begin
print,i
endfor
end
Metadata
Metadata
Assignees
Labels
No labels