tw0776.pp 216 B

12345678910111213141516
  1. {$mode objfpc}
  2. uses sysutils;
  3. var i:integer;
  4. j : record
  5. x,y : longint;
  6. end;
  7. begin
  8. i:=0;
  9. format('%d', [i]);
  10. with j do
  11. begin
  12. x:=2;
  13. y:=4;
  14. Writeln('j.x=',x,' j.y=',y);
  15. end;
  16. end.