mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 13:29:27 +02:00
13 lines
147 B
ObjectPascal
13 lines
147 B
ObjectPascal
var
|
|
a: Boolean;
|
|
b,c,d : Variant;
|
|
e : Integer;
|
|
begin
|
|
b := 'abc';
|
|
c := null;
|
|
a := b = c;
|
|
a := b <> c;
|
|
d := e - c;
|
|
d := e + c;
|
|
end.
|