ts010023.pp 146 B

1234567891011121314
  1. const
  2. nl=#10;
  3. type
  4. cs=set of char;
  5. function p(c:cs):boolean;
  6. begin
  7. p:=(#10 in c);
  8. end;
  9. begin
  10. if p([#1..#255]-[nl]) then
  11. halt(1);
  12. end.