[Lazarus] Installing FPC/Lazarus on Windows using SVN, no binaries
Marcos Douglas
md at delfire.net
Fri May 28 17:08:02 CEST 2010
On 05/28/2010 02:20 PM, Jürgen Hestermann wrote:
> A "block" is a sequence of commands that are executed step by step
> one after the other.
"begin" and "end" are not executed, but just limitations of the block
they mark, so it's a matter of taste if they are felt to be inside or
outside of the block or if they even get a special handling
inside;
if x then
begin
incode;
end;
outcode;
outside:
if x then
begin
incode;
end;
outcode;
special handling 1:
if x then begin
incode;
end;
outcode;
special handling 2:
if x then begin
incode; end;
outcode;
-Michael
More information about the Lazarus
mailing list