fork download
  1. uses
  2. crt;
  3. var
  4. x:string;
  5. begin
  6. clrscr;
  7. while not eof(input) do
  8. begin
  9. readln(kalimat);
  10. writeln(kalimat);
  11. end;
  12. writeln(x);
  13. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
abc
123
compilation info
Free Pascal Compiler version 2.2.0 [2009/11/16] for i386
Copyright (c) 1993-2007 by Florian Klaempfl
Target OS: Linux for i386
Compiling prog.pas
prog.pas(9,19) Error: Identifier not found "kalimat"
prog.pas(9,20) Error: Illegal expression
prog.pas(10,20) Error: Identifier not found "kalimat"
prog.pas(10,21) Error: Illegal expression
prog.pas(12,2) Warning: Variable "x" does not seem to be initialized
prog.pas(13,4) Fatal: There were 4 errors compiling module, stopping
Fatal: Compilation aborted
Error: /usr/bin/ppc386 returned an error exitcode (normal if you did not specify a source file to be compiled)
stdout
Standard output is empty