tw28718b.pp 228 B

123456789101112131415
  1. {$codepage cp1258}
  2. { should not have any effect, since the setting was not enabled }
  3. {$modeswitch systemcodepage-}
  4. program tw28718b;
  5. var
  6. a: ansistring;
  7. begin
  8. a:='abc';
  9. if stringcodepage(a)<>1258 then
  10. halt(1);
  11. end.