mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 02:48:07 +02:00
10 lines
161 B
ObjectPascal
10 lines
161 B
ObjectPascal
var
|
|
aURI,Server:rawbytestring;
|
|
|
|
begin
|
|
aURI:='abcdefg';
|
|
SetString(Server,@aURI[1],Length(aURI));
|
|
if stringcodepage(server)=CP_NONE then
|
|
halt(1);
|
|
end.
|