fork download
  1. program ideone;
  2. var n, f, i: integer;
  3. begin
  4. f : = 1;
  5. readln (n);
  6. for i : = 2 to n do
  7. f : = f * i;
  8. writeln (f);
  9. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
1
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(4,3) Error: Illegal expression
prog.pas(4,3) Fatal: Syntax error, ";" expected but ":" found
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode
stdout
Standard output is empty