fork download
  1. program ideone;
  2.  
  3. uses
  4. math;
  5.  
  6. var
  7. max: integer = 42;
  8.  
  9. begin
  10. writeln(Math.max(2,4));
  11. writeln(max);
  12. end.
Success #stdin #stdout 0s 400KB
stdin
Standard input is empty
stdout
4
42