fork(1) download
  1. program test;
  2.  
  3. uses gvector;
  4.  
  5. var x: integer;
  6. begin
  7. repeat
  8. readln(x);
  9. if x <> 42 then writeln(x);
  10. until x = 42
  11. end.
Compilation error #stdin compilation error #stdout 0s 336KB
stdin
12
42
compilation info
Free Pascal Compiler version 3.0.0+dfsg-10 [2016/12/12] for x86_64
Copyright (c) 1993-2015 by Florian Klaempfl and others
Target OS: Linux for x86-64
Compiling prog.pas
prog.pas(3,6) Fatal: Can't find unit gvector used by test
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode
stdout
Standard output is empty