fork download
  1. type
  2. TPituh = array[1..3] of integer;
  3.  
  4. const
  5. Pituh1: TPituh = (0, 1, 2);
  6. Pituh2: TPituh = (1, 2, 3);
  7. Pituh3: TPituh = (1, 2, 3);
  8.  
  9.  
  10. begin
  11. Writeln('Pituh1 = Pituh2 ? ', Pituh1 = Pituh2);
  12. Writeln('Pituh2 = Pituh3 ? ', Pituh2 = Pituh3);
  13. 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(11,39) Error: Operator is not overloaded: "TPituh" = "TPituh"
prog.pas(12,39) Error: Operator is not overloaded: "TPituh" = "TPituh"
prog.pas(13,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