RosettaCodeData/Task/Collections/Pascal/collections-3.pascal
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
208 B
Text

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;