mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 16:19:27 +02:00
12 lines
240 B
ObjectPascal
12 lines
240 B
ObjectPascal
{ Old file: tbs0192.pp }
|
|
{ can't compare boolean result with true/false, because the boolean result is already in the flags OK 0.99.11 (PFV) }
|
|
|
|
var
|
|
k,l : word;
|
|
begin
|
|
if (k<>l)=false then
|
|
;
|
|
if (k<>l)=true then
|
|
;
|
|
end.
|