mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
17 lines
217 B
ObjectPascal
17 lines
217 B
ObjectPascal
{$mode objfpc}
|
|
uses sysutils;
|
|
var i:integer;
|
|
j : record
|
|
x,y : longint;
|
|
end;
|
|
begin
|
|
i:=0;
|
|
format('%d', [i]);
|
|
with j do
|
|
begin
|
|
x:=2;
|
|
y:=4;
|
|
Writeln('j.x=',x,' j.y=',y);
|
|
end;
|
|
end.
|