fork download
  1. program ideone;
  2. var i : Integer;
  3. begin
  4. for i := 1 to 10 do
  5. begin
  6. writeln(i);
  7. inc(i);
  8. end;
  9. end.
Compilation error #stdin compilation error #stdout 0s 276KB
stdin
Standard input is empty
compilation info
prog.pas(7,3) Error: Illegal assignment to for-loop variable "i"
prog.pas(9,4) Fatal: There were 1 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