tb0134.pp 269 B

12345678910111213
  1. { Old file: tbs0157.pp }
  2. { Invalid compilation and also crashes OK 0.99.7 (PFV) }
  3. { this should be rejected because we only accept integer args }
  4. program write_it;
  5. var x,y:real;
  6. begin
  7. x:=5.6;
  8. y:=45.789;
  9. write(y:2:3,x:3:4);
  10. {write(y:3.2,x:5.2);}
  11. end.