tw0769.pp 155 B

12345678910111213
  1. { %OPT=-Sew }
  2. { this should generate no warning }
  3. {$mode tp}
  4. Program test;
  5. var x,y:integer;
  6. begin
  7. y:=5;
  8. for x:=0 to 10 do if x<y then writeln(x);
  9. end.