An empty statement does nothing.
empty-statement:
;
An empty statement is used when there are no statements to execute in a context where a statement is required. In most cases, an empty statement is used as a concluding statement for other statements, types or type members in Fore.NET.
Var
b: Boolean;
Begin
While b Do
End While;
See also: