fork download
  1. program NumberMultiplyer;
  2.  
  3. var1 = interger
  4. var2 = interger
  5.  
  6. begin;
  7.  
  8. Writeln 'Please Enter a Number';
  9. readln (var1)
  10. Writeln 'Please enter a second Number';
  11. readln (var2) ;
  12. writeln (var1 * var2;)
  13.  
  14. 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
Fatal: Syntax error, "BEGIN" expected but "identifier VAR1" 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