mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
16 lines
190 B
ObjectPascal
16 lines
190 B
ObjectPascal
uses
|
|
toperator2,toperator3;
|
|
|
|
var
|
|
a,b,c : op1;
|
|
d,e,f : op2;
|
|
|
|
begin
|
|
a.x:=67;a.y:=-45;
|
|
b.x:=89;b.y:=23;
|
|
c:=a+b;
|
|
e.x:=67;e.y:=-45;e.z:=67;
|
|
f.x:=89;f.y:=23;f.z:=56;
|
|
d:=e+f;
|
|
end.
|