denioflavio
12 years agoOccasional Contributor
Break procedure execution.
Hi! I have a delphiscript coded like this: procedure test(value : boolean); begin if (value = true) Do Nothing else Do ...
- 12 years agoThere is the Exit command in DelphiScript to break procedure / function execution.
But the case that you described can be coded like this:
procedure test(value : boolean);
begin
if (value = false)
Do Something
end;