tw8258a.pp 192 B

12345678910111213141516
  1. program SetsFUBAR;
  2. uses
  3. SysUtils;
  4. var
  5. FCommentChars: TSysCharSet;
  6. s: string;
  7. begin
  8. s := '#';
  9. FCommentChars := [';','#'];
  10. if not (s[1] in FCommentChars) then
  11. halt(1);
  12. end.