Code:
FVar : Booelan;

if FVar = True then
begin
  ...
end;
Actually I like doing that!!! I think it is more readable than:

Code:
if FVar then
begin
  ...
end;