fork(1) download
  1. program qq;
  2. var
  3. x,y : double;
  4.  
  5. procedure foo(x, y: double);
  6. begin
  7. if cos(x) <> cos(y) then writeln('everything is possible!')
  8. end;
  9.  
  10. begin
  11. foo(1.0,1.0);
  12. end.
Success #stdin #stdout 0.02s 4112KB
stdin
Standard input is empty
stdout
everything is possible!