mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
12 lines
136 B
ObjectPascal
12 lines
136 B
ObjectPascal
|
|
type TStruct = record
|
|
x,y: Integer;
|
|
end;
|
|
|
|
var i: TStruct;
|
|
|
|
begin
|
|
for i.x:=1 to 10 do
|
|
writeln(i.x);
|
|
end.
|