RosettaCodeData/Task/Collections/Pascal/collections-3.pas
2023-07-01 13:44:08 -04:00

11 lines
208 B
ObjectPascal

var
MyRecord: record
x, y, z: real;
presence: boolean;
end;
begin
MyRecord.x := 0.3;
MyRecord.y := 3.2;
MyRecord.z := -4.0;
MyRecord.presence := true;
end;