fpc/tests/webtbs/tw3953a.pp
2005-05-19 22:16:53 +00:00

19 lines
363 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3953 }
{ Submitted by "Jesus Reyes A." on 2005-05-08 }
{ e-mail: jesusrmx@yahoo.com.mx }
program CompareBooleanVars;
uses variants;
var
A,B: Variant;
begin
A := True;
B := True;
if A=B then
WriteLn('A and B are equal')
else
begin
WriteLn('A and B are NOT equal');
halt(1);
end;
end.