fork download
  1. program noname;
  2. type massiv=array[1..35] of real;
  3. var x:massiv;
  4. i,n:integer;
  5. begin
  6. for i:=1 to n read(x[i]);
  7. x[0]:=x[n];
  8. for i:=0 to n-1 write(x[i]);
  9. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
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(6,15) Fatal: Syntax error, "DO" expected but "identifier READ" found
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