fork download
  1. type
  2. TPituh = record
  3. x, y: integer;
  4. end;
  5.  
  6. var
  7. Pituh1: TPituh = (x: 0; y: 1);
  8. Pituh2: TPituh = (x: 2; y: 3);
  9. Pituh3: TPituh = (x: 2; y: 3);
  10.  
  11.  
  12. begin
  13. Pituh2 := Pituh1;
  14. Writeln(Pituh2.x);
  15. end.
Success #stdin #stdout 0s 4156KB
stdin
Standard input is empty
stdout
0