mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
15 lines
221 B
ObjectPascal
15 lines
221 B
ObjectPascal
const
|
|
TestStr: widestring = 'Test';
|
|
|
|
var
|
|
buf: array[0..10] of widechar;
|
|
s: widestring;
|
|
|
|
begin
|
|
Move(TestStr[1], buf[0], (Length(TestStr) + 1)*SizeOf(widechar));
|
|
s:=buf;
|
|
writeln(s);
|
|
buf[0]:=#0;
|
|
s:=buf;
|
|
end.
|