Hi all,
I have some code:
if condition then
begin
Execute;
Terminate;
end;
How do I make it so that the program will carry on checking for that condition until it is met, rather than just checking it once, and proceeding with the other code in the program?
Thank you