RosettaCodeData/Task/Collections/Pascal/collections-3.pas

12 lines
208 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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;