fork(3) download
  1. type
  2. TPituh = record
  3. x, y: integer;
  4. end;
  5.  
  6. const
  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. Writeln('Pituh1 = Pituh2 ? ', Pituh1 = Pituh2);
  14. Writeln('Pituh2 = Pituh3 ? ', Pituh2 = Pituh3);
  15. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Free Pascal Compiler version 3.0.4+dfsg-22 [2019/01/24] for x86_64
Copyright (c) 1993-2017 by Florian Klaempfl and others
Target OS: Linux for x86-64
Compiling prog.pas
prog.pas(13,39) Error: Operator is not overloaded: "TPituh" = "TPituh"
prog.pas(14,39) Error: Operator is not overloaded: "TPituh" = "TPituh"
prog.pas(15,4) Fatal: There were 2 errors compiling module, stopping
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode
stdout
Standard output is empty